我想在我的 jsp 视图中显示我的值列表,但我无法做到这一点。
下面是我的控制器类,它只是将列表添加到ModelAndView
地图中,然后重定向到我的index.jsp
页面。
员工控制器
@Controller
public class EmployeeController {
@RequestMapping(value={"/employee"}, method = RequestMethod.GET)
public String listEmployee(){
System.out.println("Kontroler EmployeeController");
LinkedList<String> list = getList();
ModelAndView map = new ModelAndView("index");
map.addObject("lists", list);
return map.getViewName();
}
private LinkedList<String> getList(){
LinkedList<String> list = new LinkedList<>();
list.add("Item 1");
list.add("Item 2");
list.add("Item 3");
return list;
}
}
索引.jsp
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Welcome to Spring Web MVC project</title>
</head>
<body>
<h1>Index page</h1>
<h1>${msg}</h1>
<a href="/MavenHello/employee">Zaměstnanci</a>
</body>
<c:if test="${not empty listEmployee}">
<ul>
<c:forEach var="listValue" items="${listEmployee}">
<li>${listValue}</li>
</c:forEach>
</ul>
</c:if>
我能够访问控制器,因为每次我点击"Zaměstnanci"
时,都会System.out.println("Kontroler EmployeeController")
打印"Kontroler EmployeeController"
到 Tomcat Log,但index.jsp
页面是空白的。
拜托,有人可以给我一个建议吗?