我在一篇题为SPRING 3.1 M2: SPRING MVC ENHANCEMENTS<resources mapping="/resources/**" location="/resources/" />
的博文中读到,可以用以下等价物替换该元素:
@Configuration
@EnableWebMvc
public class AppConfiguration extends WebMvcConfigurerAdapter {
@Override
public void configureResourceHandling(ResourceConfigurer configurer) {
configurer.addPathMapping("/resources/**").addResourceLocation("/resources/");
}
}
但是在 Spring 3.2.0.RELEASE 中,我似乎无法找到ResourceConfigurer
. 这个功能有没有正式发布过?我的依赖项可能有问题,但在发布所有内容之前,我只想检查一下。