springboot不推荐使用jsp开发
那么企业的开发主要分为两种
1.thymeleaf模板(主要基于.html的开发)
页面拿值
<!--页面拿值-->
<h3 th:text="${name}"></h3>
页面取值
<!--页面取值-->
<select name="hobby">
<option th:each="user :${UserList}" th:text="${user.userName}" th:value="${user.id}"> </option>
</select>
页面遍历
<!--table表格的遍历-->
<table border="2" width="600px" th:height="20px" height="600px">
<thead>
<tr>
<td>Id</td>
<td>name</td>
<td>distribution</td>