6

我想在我的 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页面是空白的。

拜托,有人可以给我一个建议吗?

4

3 回答 3

7

当您填充ModelAndView时返回 ModelAndView 本身,而不是map.getViewName()仅返回名称的名称而没有数据,如文档中所述:

public String getViewName() 返回要由 DispatcherServlet 通过 ViewResolver 解析的视图名称,如果我们使用 View 对象,则返回 null。

如下:

@RequestMapping(value = { "/employee" }, method = RequestMethod.GET)
public ModelAndView listEmployee() {
    System.out.println("Kontroler EmployeeController");
    LinkedList<String> list = getList();
    ModelAndView map = new ModelAndView("index");
    map.addObject("lists", list);

    return map;
}

其次,您在索引页面上缺少 jstl 标记 <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>,并且您提供给列表的变量名称是“lists”,因此迭代“lists”而不是“listEmployee”,如下所示:

<html>
<head>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<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>
</body>

<c:if test="${not empty lists}">
    <c:forEach items="${lists}" var="lists">
       ${lists}
</c:forEach>
</c:if>

此外,请确保您的类路径中有JSTL依赖项:

<dependency>
  <groupId>jstl</groupId>
  <artifactId>jstl</artifactId>
  <version>1.2</version>
</dependency>
于 2017-02-05T17:34:44.177 回答
2

只需添加Model到您的控制器方法参数,然后将属性添加到此模型。

RequestMapping(value={"/employee"}, method = RequestMethod.GET)
public String listEmployee(Model model){    
    System.out.println("Kontroler EmployeeController");
    LinkedList<String> list = getList();
    model.addAttribute("lists", list);

    return "index";
}

另一种方法是返回ModelAndView而不是String

@RequestMapping(value={"/employee"}, method = RequestMethod.GET)
public ModelAndView listEmployee(){    
    System.out.println("Kontroler EmployeeController");
    LinkedList<String> list = getList();
    ModelAndView map = new ModelAndView("index");
    map.addObject("lists", list);

    return map;
}

只需选择更适合您的方式。

并且还将listEmployee您的索引页面更改listsModelAndView您的属性lists不是 listEmployee`。

于 2017-02-05T17:10:50.997 回答
0

更改密钥名称并尝试:listEmployee --> lists as you are setting it as map.addObject("lists", list);

<ul>
    <c:forEach var="listValue" items="${lists}">
        <li>${listValue}</li>
    </c:forEach>
</ul>
于 2017-02-05T17:22:28.973 回答