springboot 进行热部署

原文参考地址:https://blog.csdn.net/qq_37598011/article/details/80778915

1.在pom.xml中添加依赖


       
       
       
       
       
       
       
            org.springframework.boot
            spring-boot-devtools
           
            true
       

2.修改application.properties文件

#"关闭缓存, 即时刷新"
#spring.freemarker.cache=false
#spring.thymeleaf.cache=true  如果开启此处会导致每次输入删除都会自动刷新哪怕你没保存
 
#热部署生效
spring.devtools.restart.enabled=true
#设置重启的目录,添加那个目录的文件需要restart
spring.devtools.restart.additional-paths=src/main/java
 
spring.devtools.restart.exclude=WEB-INF/**
3.idea的修改
3.1:File-Settings-Compiler-Build Project automatically

springboot 进行热部署_第1张图片

3.2:ctrl + shift + alt + /然后选择Registry,勾上 Compiler.autoMake.allow.when.app.running

你可能感兴趣的:(springboot 进行热部署)