SpringBoot+ Intellj idea devtools 设置热部署

一、pom文件


    org.springframework.boot
    spring-boot-devtools
    
    true

二、project增加

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

三、idea 设置

1、“File” -> “Settings” -> “Build,Execution,Deplyment” -> “Compiler”,选中打勾 “Make project automatically”
2、按住组合键:“Shift+Ctrl+Alt+/” ,选择 “Registry” ,选中打勾 “compiler.automake.allow.when.app.running”

四、缓存配置

1、application.properties

spring.thymeleaf.cache=false

2、Chrome禁用缓存

你可能感兴趣的:(SpringBoot+ Intellj idea devtools 设置热部署)