我使用Spring引导应用程序填充html表。但是表数据没有被填充。未调用数据映射的@RequestMapping
。我找不到问题。这是我的代码。
我的表格代码在下面
<table class="table" id="myTableId" dt:table="true">
<thead>
<tr>
<th>First Name</th>
<th>Last Name</th>
</tr>
</thead>
<tbody>
<tr th:each="user :${users}">
<td th:text="${user.firstname}">${user.firstname}</td>
<td th:text="${user.lastname}">${user.firstname}</td>
</tr>
</tbody>
</table>
这是我的控制器代码
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.ModelAttribute;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
@Controller
public class UserRightsController {
@Autowired
public CodMasDao dao;
@RequestMapping(value = {"/user"}, method = RequestMethod.GET)
public String table(Model md) {
List<UserInfoModel> UserInfoModel =dao.getUserInfos();
md.addAttribute("users", UserInfoModel);
return "user";
}
}
请帮助我。