如何在服务器运行时自动加载Spring启动应用程序静态包含?

时间:2017-06-20 05:06:07

标签: spring-boot

我已经创建了一个spring boot应用程序,其中在src / resource / static位置我保存了我的所有html,js和css文件,每当我对这些文件进行任何更改时,我都需要重新启动spring boot应用程序。有没有简单的方法,所以我不需要重新启动我的应用程序。

1 个答案:

答案 0 :(得分:1)

根据spring boot文档,您需要在web apps文件夹下移动静态内容。还可以进行以下设置

  

项目 - >自动构建

如果你使用eclipse

1)如果你正在使用百里香叶,那么只需添加

即可
  

spring.resources.static-位置

在应用程序属性中。

2)如果您想要自动重启,请尝试添加

  

spring.devtools.restart.additional路径

到你的

  

application.properties

参考文献:

http://www.logicbig.com/tutorials/spring-framework/spring-boot/boot-live-reload/ http://www.concretepage.com/spring-boot/spring-boot-automatic-restart-using-developer-tools-with-maven

使用Thymeleaf:

http://blog.codeleak.pl/2016/12/thymeleaf-reload-templates-and-static-resources.html