Springboot配置热部署

一、添加spring提供的devtools热部署依赖


    
        org.springframework.boot
        spring-boot-devtools
        true
    

 

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

二、热部署生效:在配置文件application.yml中添加 :

debug: true
spring:
  devtools:
    restart:
      enabled: true  #设置开启热部署
  freemarker:
    cache: false    #页面不加载缓存,修改即时生效

三、idea启动设置更新class文件

Springboot配置热部署_第1张图片
Springboot配置热部署_第2张图片

你可能感兴趣的:(spring,springboot,热部署)