springboot热部署
Posted rrrzx
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot热部署相关的知识,希望对你有一定的参考价值。
maven依赖
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <version>2.2.4.RELEASE</version> </dependency>
<build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <fork>true</fork> </configuration> </plugin> </plugins> </build>
注意添加这段
<configuration> <fork>true</fork> </configuration>
在设置中勾选Build project automatically,但是默认情况下只能在没有运行的条件下才生效,自然不能实现热部署,所以
快捷键ctrl + shift + alt + /
进入Registry勾选compiler.automake.allow.when.app.running
最后在application.properties添加
spring.thymeleaf.cache=false
spring.devtools.restart.enabled=true
spring.devtools.restart.additional-paths=/src/main/java
以上是关于springboot热部署的主要内容,如果未能解决你的问题,请参考以下文章
利用 jrebel 热部署远程调试远程热部署 springboot项目 服务器上的代码