美文网首页
SpringBoot下Thymeleaf模板代码配置传统模式解析

SpringBoot下Thymeleaf模板代码配置传统模式解析

作者: DinghuiYe | 来源:发表于2018-02-18 13:35 被阅读0次

    thymeleaf使用th:fragment配置公用模板代码时,默认所有的标签必须关闭,即类似<img></img><img/>这类形式,但是html代码不可能按照严格的XML格式进行编写,所以需要一个方法来配置标签不需要关闭:

    1. maven添加nekohtml依赖:
    <dependency>
        <groupId>net.sourceforge.nekohtml</groupId>
        <artifactId>nekohtml</artifactId>
    </dependency>
    
    1. application.yml配置参数:
    spring:
      thymeleaf:
        mode: LEGACYHTML5
    

    重启springboot就可以生效了

    相关文章

      网友评论

          本文标题:SpringBoot下Thymeleaf模板代码配置传统模式解析

          本文链接:https://www.haomeiwen.com/subject/zscbtftx.html