无法在JSP中调用modelMap

时间:2016-02-04 08:44:06

标签: spring jsp

我有一个Spring MVC控制器,它将test映射到test.jsp。它有ModelMap对象,必须由JSP页面访问。 这是控制器

@RequestMapping(value = "/test")
public String test(ModelMap map) 
{
    map.addAttribute("data","the string which should bbe printed");
    return "test";
}

这是test.jsp

<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE HTML>
<html>
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>Hello</title>
  </head>
  <body>
    <c:out value="${data}" />
  </body>
</html>

屏幕上我什么也没得到。 请帮帮我。

0 个答案:

没有答案