springboot热部署 不重启刷新静态html页面 非严格html标签配置


    org.springframework.boot
    spring-boot-starter-thymeleaf



    net.sourceforge.nekohtml
    nekohtml

 


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

 

spring:
  thymeleaf:
    encoding: UTF-8
    cache: false
    mode: LEGACYHTML5 #非严格html标签
    prefix: classpath:/templates/
    suffix: .html

 

设置以下两项

 

    1) “File” -> “Settings” -> “Build,Execution,Deplyment” -> “Compiler”,选中打勾 “Build project automatically” 。

 

 2) 组合键:“Shift+Ctrl+Alt+/” ,选择 “Registry” ,选中打勾 “compiler.automake.allow.when.app.running” 

你可能感兴趣的:(springboot热部署 不重启刷新静态html页面 非严格html标签配置)