我正尝试升级我的spring mvc项目,以利用新的注释并摆脱我的xml。以前,我web.xml通过以下行将静态资源加载到我的计算机中:
web.xml
<mvc:resources mapping="/resources/**" location="/resources/" />
现在,我在没有任何xml文件的情况下利用WebApplicationInitializer该类和@EnableWebMvc批注来启动我的服务,但是似乎无法弄清楚如何加载我的资源。
WebApplicationInitializer
@EnableWebMvc
是否有注释或新配置可将这些资源拉回而无需使用xml?
对于spring3和4:
一种方法是让你的配置类extension WebMvcConfigurerAdapter,然后像这样重写以下方法:
WebMvcConfigurerAdapter
@Override public void addResourceHandlers(final ResourceHandlerRegistry registry) { registry.addResourceHandler("/resources/**").addResourceLocations("/resources/"); }