当前位置:   article > 正文

解决在Thymeleaf中layout:fragment不生效的问题_tj thymeleaf layout不生效的

tj thymeleaf layout不生效的
       最近一直在springboot项目上使用thymeleaf模板,很是方便,于是在我的SpringMVC项目中整合了thymeleaf模板,但是就出问题了,layout:fragment并不生效,模板继承并不可以使用。百般查阅之后,解决方法如下:

这里写图片描述

意思呢就是要想使用这个fragment呀,首先得在bean配置中加上这么几句才可以。

首先是maven依赖:

<dependency>
      <groupId>nz.net.ultraq.thymeleaf</groupId>
      <artifactId>thymeleaf-layout-dialect</artifactId>
      <version>2.2.1</version>
</dependency>
  • 1
  • 2
  • 3
  • 4
  • 5

然后是在启动类增加:

TemplateEngine templateEngine = new TemplateEngine(); 
templateEngine.addDialect(new LayoutDialect());
  • 1
  • 2

或者是在XML配置文件中增加:

<bean id="templateEngine" class="org.thymeleaf.spring4.SpringTemplateEngine">
  <property name="additionalDialects">
    <set>
      <bean class="nz.net.ultraq.thymeleaf.LayoutDialect"/>
    </set>
  </property>
</bean>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

参考:Thymeleaf Layout Dialect官方API

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/279618
推荐阅读
相关标签
  

闽ICP备14008679号