Spring Boot集合转换JSON

示例【Spring Boot集合转换JSON】

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

<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
<title>Spring Boot转换集合数据</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>
<script type="text/javascript">
$(document).ready(function(){
	findBooks();
});
function findBooks(){
	$.post("/findUsers",null,
			function(data){ 
		$.each(data,function(){
			var tr  = $("<tr/>");
            $("<td/>").html(this.userName).appendTo(tr);
            $("<td/>").html(this.sex).appendTo(tr);
            $("<td/>").html(this.age).appendTo(tr);
            $("#userTable").append(tr);
        })
	},"json");
}
</script>
</head>
<body>
	<div class="panel panel-primary">
		<div class="panel-heading">
			<h3 class="panel-title">Spring Boot转换集合数据</h3>
		</div>
	</div>
	<div class="container">
		<div class="row">
			<div class="col-md-4">
				<table class="table table-bordered" id="userTable">
					<thead>
						<tr>
							<th>用户名</th>
							<th>性别</th>
							<th>年龄</th>
						</tr>
					</thead>
					<tbody class="text-center"></tbody>
				</table>
			</div>
		</div>
	</div>
</body>
</html>

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

package com.dwx.hello;
import java.util.ArrayList;
import java.util.List;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class UserController {
	@RequestMapping("/findUsers")
	public List<User> findUsers() {
		List<User> users=new ArrayList<>();
		users.add(new User("jack","男",22));
		users.add(new User("lucy","女",18));
		users.add(new User("tom","男",20));
		return users;
	}
}

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

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

云淡风轻58

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

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

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

打赏作者

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

抵扣说明:

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

余额充值