idea_springboot热部署
<!--devtools热部署-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
<scope>true</scope>
</dependency>
- 在application.yml或者application.properties加入如下配置
yml:
spring:
devtools:
restart:
enabled: true #设置开启热部署
additional-paths: src/main/java #重启目录
exclude: WEB-INF/**
freemarker:
cache: false #页面不加载缓存,修改即时生效
properties:
#热部署
spring.devtools.restart.enabled=true
#重启目录
spring.devtools.restart.additional-paths=src/main/java
spring.devtools.restart.exclude= WEB-INF/**
#页面不加载缓存,修改即时生效
spring.freemarker.cache=false
- 修改idea设置:
(1)File->Settings->Compiler->Build project automatically
(2)ctrl + shift + alt + / ,选择Registry,勾上 compiler.automake.allow.when.app.running
接下来将项目进行重启即可发现热部署成功