分享一个大牛的人工智能教程。零基础!通俗易懂!风趣幽默!希望你也加入到人工智能的队伍中来!请轻击http://www.captainbed.net
SpringBoot提供的默认资源路径,按优先级排序如下: classpath:/META-INF/resources/ classpath:/resources/ classpath:/static/ classpath:/public/
一、通过配置文件
spring.mvc.static-path-pattern=/** ?#表示所有的访问都经过静态资源路径
spring.resources.static-locations=classpath:/testStatic/
二、代码实现 实现类继承WebMvcConfigurerAdapter,并重写方法addResourceHandlers。
@Configuration
public class MyWebAppConfigurer extends WebMvcConfigurerAdapter {
? ? @Override
? ? public void addResourceHandlers(ResourceHandlerRegistry registry) {
? ? ? ? registry.addResourceHandler("/testStatic/**").addResourceLocations("classpath:/testStatic/");
? ? ? ? super.addResourceHandlers(registry);
? ? }
}
|