SpringBoot 整合 Thymeleaf 步骤及问题详解

本文展示了如何在Spring Boot中使用Thymeleaf作为模板引擎,通过pom.xml添加依赖,配置yml文件,创建UserController并返回数据,最后在list.html模板中遍历显示用户信息。强调了在遍历过程中使用嵌套标签的重要性。
摘要由CSDN通过智能技术生成

在线手册

pom文件引入依赖:

<!--thymeleaf-->
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-thymeleaf</artifactId>
		</dependency>

yml配置:

spring:
	  #thymeleaf页面模板配置
  mvc:
    view:
      prefix: /
      suffix: .html

UserController:

@GetMapping("/user/list")
    private String helloWorld(Model model) {

        List<UserPojo> userPojoList = new ArrayList<>();
        userPojoList.add(new UserPojo("1a2b3c", "测试用户1", "pwd111aaa"));
        userPojoList.add(new UserPojo("4d5e6f", "测试用户2", "pwd222bbb"));

        model.addAttribute("users", userPojoList);

        return "list";
        
    }

list.html:

<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
<ul th:each=" user : ${users}">
    <li th:text="${user.id}"></li>
</ul>
</body>
</html>

结果:

1a2b3c
测试用户1
pwd111aaa

4d5e6f
测试用户2
pwd222bbb

问题:

1.遍历时利用嵌套标签如:ul-li,tr-td,不要使用非嵌套标签如:p,防止遍历失败;

参考:

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值