idea之springboot项目热部署

  • 页面热部署实现
  1. application.properties配置如下:
    #thymeleaf start
    spring.thymeleaf.mode=HTML5
    spring.thymeleaf.encoding=UTF-8
    spring.thymeleaf.content-type=text/html
    #开发时关闭缓存,不然没法看到实时页面
    spring.thymeleaf.cache=false
    #thymeleaf end
  2. Ctrl + F9 build project
  • 代码热部署实现
  1. CTRL + SHIFT + A --> 查找make project automatically --> 选中idea之springboot项目热部署_第1张图片
  2. 加maven依赖
    
        org.springframework.boot
        spring-boot-devtools
        true
    

  3. 开启热部署
    
        
            
                org.springframework.boot
                spring-boot-maven-plugin
                
                    true
                
            
        
    
  4. Ctrl + F9 build project

你可能感兴趣的:(idea之springboot项目热部署)