sptingboot配置静态资源
查看源码发现其默认地址一下几个,但是也可自己自定
private static final String[] CLASSPATH_RESOURCE_LOCATIONS = new String[]{"classpath:/META-INF/resources/", "classpath:/resources/", "classpath:/static/", "classpath:/public/"};
# 低版本使用配置如下,高版本种,该方式已弃用,不推荐!
spring:resources:static-locations: classpath:/
# 对于高版本,配置如下
spring:web:resources:static-locations: classpath:/
@Configuration
public class WebConfigurer implements WebMvcConfigurer {private String videoAdd = "D:/test/tmp/";// 这个方法是用来配置静态资源的,比如html,js,css,等等@Overridepublic void addResourceHandlers(ResourceHandlerRegistry registry) {registry.addResourceHandler("/**").addResourceLocations("classpath:/static/");registry.addResourceHandler("/video/**").addResourceLocations("file:" + videoAdd);}}// 也可继承WebMvcConfigurationSupport,重写方法如上一致即可
在src/main/resources下面有两个文件夹,static和templates springboot默认 static中放静态页面,而templates中放动态页面,动态页面需要先请求服务器,访问后台应用程序,然后再转向到页面,使用方法如下,引入依赖,创建static同级目录templates,
org.springframework.boot spring-boot-starter-thymeleaf
如果在使用动态页面时还想跳转到/static/index.html,可以使用重定向return “redirect:/index.html”。