thymeleaf模板引擎

时间:2022-02-07 22:55:33

Springboot需要使用thymeleaf模板引擎来编写前端页面,代替了SSM中的JSP

controller的return页面的路径,默认为resources下的template

thymeleaf模板引擎

 

查看thymeleaf的配置文件,在template下默认使用.html页面

thymeleaf模板引擎

 

 

thymeleaf的语法:

在html中导入thymeleaf的命名空间

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

 

获取后端数据并展示

 thymeleaf模板引擎

 

遍历取值 

thymeleaf模板引擎