chaoxihailing / demo

It can work with mysql, but not complete login
0 stars 0 forks source link

关于thymeleaf对html格式要求严格,可能导致其他库不能使用,要配置thymeleaf模板 #1

Open chaoxihailing opened 7 years ago

chaoxihailing commented 7 years ago

spring.thymeleaf.mode = LEGACYHTML5spring.thymeleaf.mode的默认值是HTML5,其实是一个很严格的检查,改为LEGACYHTML5可以得到一个可能更友好亲切的格式要求。

需要注意的是,LEGACYHTML5需要搭配一个额外的库NekoHTML才可用。到项目根目录的build.gradle文件里这样添加它到dependencies:

chaoxihailing commented 7 years ago

springboot默认的是thymeleaf2,其对html5闭合不支持,添加thymeleaf 3 依赖,在propertity文件添加,详情可以看thyme leaf官网说明