SpringBoot设置静态资源目录

Posted HackShendi

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot设置静态资源目录相关的知识,希望对你有一定的参考价值。

Hello, I’m Shendi

SpringBoot 静态资源默认在 src/main/resource的static下

我们打jar包的时候会将静态资源一起打包进jar,也就造成了每次更改html等都需要重启一次服务器

解决办法就是设置默认静态资源目录

application.properties 配置提供了 spring.resources.static-locations 用以设置
新版使用此 spring.web.resources.static-locations

将静态资源设置在项目的同级目录的static文件夹下

# 更改打包后静态资源的目录,classpath: 代表项目的classpath下,打包后即是 application.properties 所在目录的上一级目录
spring.web.resources.static-locations=classpath:/../../static

打包后将static文件夹复制到jar包同一目录即可

文件夹名

以上是关于SpringBoot设置静态资源目录的主要内容,如果未能解决你的问题,请参考以下文章

spring boot 整合security 4 怎么设置忽略的静态资源

spring boot整合security 4,怎么设置忽略的静态资源?

SpringBoot: 5.访问静态资源(转)

SpringBoot目录文件结构和官方推荐的目录规范静态资源访问

SpringBoot静态资源

SpringBoot静态资源目录