Spring Boot Thymeleaf循环

本文介绍如何在Thymeleaf中使用th:each标签循环遍历List、Map或数组等集合对象,并通过示例代码展示如何在SpringBoot项目中实现用户数据的循环显示。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Thymeleaf中循环变量集合使用th:each标签。th:each属性用于跌代循环,迭代对象可以是List、Map或数组等,语法如下:

th:each="obj,iterStat:${objList}"

【测试Thymeleaf循环取数据】

程序清单:/springboot2/src/main/java/com/dwx/hello/User.java

package com.dwx.hello;
public class User {
	private String userName;
	private String sex;
	private Integer age;
	public User() {}
	public User(String userName,String sex,Integer age) {
		this.userName=userName;
		this.sex=sex;
		this.age=age;
	}
	public String getUserName() {
		return userName;
	}
	public void setUserName(String userName) {
		this.userName = userName;
	}
	public String getSex() {
		return sex;
	}
	public void setSex(String sex) {
		this.sex = sex;
	}
	public Integer getAge() {
		return age;
	}
	public void setAge(Integer age) {
		this.age = age;
	}

}

程序清单:/springboot2/src/main/java/com/dwx/hello/ThymeleafController.java

package com.dwx.hello;
import java.util.ArrayList;
import java.util.List;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.context.request.WebRequest;
@Controller
public class ThymeleafController {
	@RequestMapping("/eachTest")
	public String eachTest(WebRequest request) {
		User user1=new User("jack","男",22);
		User user2=new User("tom","男",20);
		User user3=new User("lucy","女",18);
		List<User> users=new ArrayList<User>();
		users.add(user1);
		users.add(user2);
		users.add(user3);
		request.setAttribute("users", users, WebRequest.SCOPE_REQUEST);
		return "success";
	}
}

程序清单:/springboot2/src/main/resources/templates/success.html

<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
<title>thymeleaf循环</title>
<link rel="stylesheet" th:href="@{css/bootstrap.min.css}">
<link rel="stylesheet" th:href="@{css/bootstrap-theme.min.css}"/>
<script type="text/javascript" th:src="@{js/jquery-1.11.0.min.js}"></script>
<script type="text/javascript" th:src="@{js/bootstrap.min.js}"></script>
</head>
<body>
	<div class="panel panel-primary">
		<div class="panel-heading">
			<h3 class="panel-title">thymeleaf循环</h3>
		</div>
	</div>
	<div class="container">
		<div class="row">
			<div class="col-md-6">
				<table class="table table-bordered">
					<thead>
						<th>序号</th>
						<th>用户名</th>
						<th>性别</th>
						<th>年龄</th>
					</thead>
					<tbody>
						<tr th:each="user,userStat : ${users}">
							<td th:text="${userStat.index+1}">序号</td>
							<td th:text="${user.userName}">用户名</td>
							<td th:text="${user.sex}">性别</td>
							<td th:text="${user.age}">年龄</td>
						</tr>
					</tbody>
				</table>
			</div>
		</div>
	</div>
</body>
</html>

启动Spring Boot项目,访问如下地址:http://localhost:8080/eachTest

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

云淡风轻58

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值