标签:att 静态资源 ping 资源加载 版本 web final rri app
spring boot 1.5 版本之前 不拦截静态资源
springboot 2.x版本 拦截静态资源
private static final String[] CLASSPATH_RESOURCE_LOCATIONS = { "classpath:/META-INF/resources/", "classpath:/resources/", "classpath:/static/", "classpath:/public/" }; @Override public void addResourceHandlers(ResourceHandlerRegistry registry) { if (!registry.hasMappingForPattern("/webjars/**")) { registry.addResourceHandler("/webjars/**").addResourceLocations( "classpath:/META-INF/resources/webjars/"); } if (!registry.hasMappingForPattern("/**")) { registry.addResourceHandler("/**").addResourceLocations( CLASSPATH_RESOURCE_LOCATIONS); } }
标签:att 静态资源 ping 资源加载 版本 web final rri app
原文地址:https://www.cnblogs.com/lick468/p/9092643.html