我可以同时使用以下配置吗?
<mvc:resources mapping="/static/**" location="/static/, classpath:/static/"/>
和
@Configuration
@EnableWebMvc
public class ResourceMappingsAdapter extends WebMvcConfigurerAdapter {
...
@Override
public void addResourceHandlers(ResourceHandlerRegistry registry) {
registry.addResourceHandler("/anotherStatic/", "file:///...");
}
从WebMvcConfigurerAdapter添加的映射似乎不提供内容。
答案 0 :(得分:1)
毕竟我想出来了。订单似乎很重要。
调整<mvc:resources mapping="/static/**" location="/static/" order="1"/>
和
registry.setOrder(Ordered.HIGHEST_PRECEDENCE)
WebMvcConfigurerAdapter中的解决了这个问题。