thymeleaf模板继承

2018-12-11  本文已影响0人  berger_w

Thymeleaf 依赖

<dependency>

<groupId>org.springframework.boot</groupId>

<artifactId>spring-boot-starter-thymeleaf</artifactId>

</dependency>

默认的配置足够了,不需要改了。

模板继承

<html xmlns:th="http://www.thymeleaf.org"

      xmlns:layout="http://www.ultraq.net.nz/web/thymeleaf/layout"

      layout:decorator="layout">

<div class="container"layout:fragment="content"></div>

layout:fragment="content" 是子类引用layout 模板 预定义的模板接口

上一篇下一篇

猜你喜欢

热点阅读