springBoot 项目热部署的方案之spring-boot-devtools

添加依赖


            org.springframework.boot
            spring-boot-devtools
            
            true 
 

配置文件 :

#热部署默认会重启
spring.devtools.restart.enabled\=true
#添加那个目录的文件需要restart
spring.devtools.restart.additional\-paths=src/main/java
#排除那个目录的文件不需要restart
spring.devtools.restart.exclude\=static/\*\*,public/\*\*

优点:简单,支持Spring-boot项目,支持成员级别的修改热部署。

缺点:只支持spring-boot项目。

相关: application.properties配置

完美解决!

你可能感兴趣的:(java,spring,springboot)