spring boot 热启动
Posted try_do_it
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring boot 热启动相关的知识,希望对你有一定的参考价值。
spring boot热启动有两种方式
1. 以Maven插件的形式去加载,所以启动时使用通过Maven命令mvn spring-boot:run启动,而通过Application.run方式启动的会无效,因为通过应用程序启动时,已经绕开了Maven插件机制。
<build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <dependencies> <dependency> <groupId>org.springframework</groupId> <artifactId>springloaded</artifactId> <version>1.2.5.RELEASE</version> </dependency> </dependencies> </plugin> </plugins> </build>
2. spring-boot-devtools
这种方式无论怎么启动应用,都可以达到修改文件后重启应用。
(1)、如果发现没有热部署效果,则需要检查IDE配置中有没有打开自动编译。
(2)、如果使用Thymeleaf模板引擎,需要把模板默认缓存设置为false
#禁止thymeleaf缓存(建议:开发环境设置为false,生成环境设置为true) spring.thymeleaf.cache=false
(3)、针对devtools的可以指定目录或者排除目录来进行热部署
#添加那个目录的文件需要restart spring.devtools.restart.additional-paths=src/main/java #排除那个目录的文件不需要restart spring.devtools.restart.exclude=static/**,public/**
(4)、默认情况下,/META-INF/maven,/META-INF/resources,/resources,/static,/templates,/public这些文件夹下的文件修改不会使应用重启,但是会重新加载(devtools内嵌了一个LiveReload Server,当资源发生改变时,浏览器刷新)
(5)、在application.properties中配置spring.devtools.restart.enabled=false,此时restart类加载器还会初始化,但不会监视文件更新。在SprintApplication.run之前调用System.setProperty(“spring.devtools.restart.enabled”, “false”);可以完全关闭重启支持。
以上是关于spring boot 热启动的主要内容,如果未能解决你的问题,请参考以下文章
maven工程使用spring-boot-devtools进行热部署,更改代码避免重启web容器