SpringBoot 热部署

SpringBoot 热部署_第1张图片
spring-boot-devtools
一、开启idea自动make功能

1、CTRL + SHIFT + A --> 查找make project automatically --> 选中
2、CTRL + SHIFT + A --> 查找Registry --> 找到并勾选compiler.automake.allow.when.app.running

使用spring-boot-1.3开始有的热部署功能

1、加maven依赖

    org.springframework.boot
    spring-boot-devtools
    true 

第二步只需要在parent 不是spring-boot-starter-parent 的时候才需要配置

2?、开启热部署
  
      
          
            org.springframework.boot  
            spring-boot-maven-plugin  
              
                true  
              
          
      
 
3?Chrome禁用缓存 , 万一没变的话,清除chrome 缓存

你可能感兴趣的:(SpringBoot 热部署)