springboot 配置外部静态资源访问位置、将所有静态资源分离到项目外部完成伪前后端分离(springboot+thymeleaf)
1 |
|
如下为项目原来的目录结构
默认访问项目是正常的
- 注:在Springboot中默认的静态资源路径有:classpath:/META-INF/resources/,classpath:/resources/,classpath:/static/,classpath:/public/,从这里可以看出这里的静态资源路径都是在classpath中(也就是在项目路径下指定的这几个文件夹)
- 在springboot 只需要做如下两步就可以将静态资源中的
- 修改themeleaf中的资源配置
- 新增配置类,配置静态资源的位置到 D 盘中
1
2
3
4
5
6
7@Configuration
public class WebConfig implements WebMvcConfigurer {
@Override
public void addResourceHandlers(ResourceHandlerRegistry registry) {
registry.addResourceHandler("/**").addResourceLocations("file:D:/aaaa/static/");
}
}
效果图
springboot 配置外部静态资源访问位置、将所有静态资源分离到项目外部完成伪前后端分离(springboot+thymeleaf)
http://yoursite.com/post/6ed10394.html/