springboot热加载

1、pom.xml配置

 
 
org.springframework.boot 
spring-boot-devtools 
true 




 
org.springframework.boot 
spring-boot-maven-plugin 
 
true
 

 

2、更改配置文件

#热部署生效 
spring.devtools.restart.enabled=true 
#设置重启的目录,检索目录(resources/static、resources/templates) spring.devtools.restart.additional-paths= src/main/java 
#classpath目录下的WEB-INF文件夹内容修改不重启 
#spring.devtools.restart.exclude= WEB-INF/**

3、File->setting-》build-》compiler-》build project auto勾选

4、shift+ctrl+alt+/ 快捷键 点击Registry 选中 compiler auto

貌似第5、6步不需要。。。

5、热部署jar包

 
org.springframework.boot
 spring-boot-maven-plugin
  
   true
  
 
 
 
org.springframework
 springloaded 
2.0.4.RELEASE 
 

 

6、运行:mvn clean spring-boot:run

不行就重启吧

你可能感兴趣的:(自己的菜地,java)