ModelAndView对象没有返回给jsp

时间:2012-05-16 15:25:40

标签: java jsp tomcat spring-mvc

我试图从控制器向jsp返回一个简单的字符串“HelloSpring”。控制器是

package it.polito.ai.e4;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.portlet.ModelAndView;

@Controller
public class HelloSpringController
{
@RequestMapping("/hello")
public ModelAndView helloSpring(HttpServletRequest request,
        HttpServletResponse response)
{
    String message = "HelloSpring";
    return new ModelAndView("hello", "message", message);
}
}

jsp是

<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"  "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Hello page</title>
</head>
<body>
    <%=(String)request.getAttribute("message")%>
</body>
</html>

当我在Tomcat 7上执行此操作时,我在页面的主体上得到“null”字符串。我的web.xml是

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
version="3.0">
<display-name>ai4</display-name>
<servlet>
    <servlet-name>ai4</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
</servlet>

<servlet-mapping>
    <servlet-name>ai4</servlet-name>
    <url-pattern>/</url-pattern>
</servlet-mapping>
<welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
</welcome-file-list>
</web-app>

4 个答案:

答案 0 :(得分:4)

尝试导入org.springframework.web.servlet.ModelAndView而不是org.springframework.web.portlet.ModelAndView。 :)

另外,正如Sumit Desai所说,自春季以来,大多数人都在编写这样的控制器方法:

@RequestMapping("/hello")
public String helloSpring(Model m)
{
    m.addAttribute("message", "HelloSpring");
    return "hello";
}

这只是风格,你所做的也是如此。希望有所帮助。

答案 1 :(得分:0)

您可能错误配置了视图解析程序。特别是,我会仔细检查视图解析器的“viewClass”属性。发布你的春季配置,以便我们检查。

答案 2 :(得分:0)

$ {message}应该适合你。 此外,它看起来你正在使用Spring 3.x.因此,更好的方法是使用ModelMap对象,它允许您将多个模型对象传递给JSP(在这种情况下,helloSpring的返回类型应该是String,这将对应于JSP页面的名称),尽管你的也没错。

答案 3 :(得分:0)

我也面临类似的问题,我的计划已经在这里提到的答案中处理解决方案。我在找到解决方案http://www.mkyong.com/spring-mvc/modelandviews-model-value-is-not-displayed-in-jsp-via-el/时遇到了这篇文章。因此,根据链接,我在我的jsp文件顶部添加了一个语句“&lt;%@ page isELIgnored =”false“%&gt;”并且它开始工作正常。希望它有所帮助。