idea+springBoot项目热部署使用

idea下载插件 JRebel 如图 下载后重启 idea
idea+springBoot项目热部署使用_第1张图片

idea+springBoot项目热部署使用_第2张图片
idea+springBoot项目热部署使用_第3张图片
pom.xml引用配置


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

idea+springBoot项目热部署使用_第4张图片
按住 ctrl + shift +alt +/
idea+springBoot项目热部署使用_第5张图片
修改这三个

compiler.automake.trigger.delay
compiler.document.save.trigger.delay
compiler.automake.allow.when.app.running

idea+springBoot项目热部署使用_第6张图片
这个配置可有可无

spring:
  #      热部署配置
  thymeleaf:
    prefix: classpath:/templates/
    suffix: .html
    mode: HTML
    encoding: utf-8
    servlet:
      content-type: text/html
    cache: false

idea+springBoot项目热部署使用_第7张图片
重启idea 如下图dibug启动,每次修改代码之后按ctrl+s保存 会自动编译,亲测有效idea+springBoot项目热部署使用_第8张图片

你可能感兴趣的:(java)