dispatcherservlet没有线模型来查看

时间:2012-05-22 05:21:37

标签: spring

我从控制器制作了一个模型并返回调度员。看起来没有问题

模型中的

因为我通过system.out.println仔细检查了输出。对于viewname字符串,我仔细检查了

实际目录名称是“WEB-INF / views / hello.jsp”。

但我相信调度程序servlet不会使模型适应视图,因为浏览器没有显示

应显示的模型值。理解我正在经历的事情会更容易理解

如果我把我的代码放在这里。所以......这是我的代码。

的web.xml

<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>
        /WEB-INF/spring/appServlet/spring-servlet.xml
    </param-value>
</context-param>

弹簧servlet.xml中

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans 
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-2.5.xsd"
>
<context:annotation-config/>
<bean name="/hello" class="com.spring.toby.HelloController"/>
<bean id="HelloSpring" class="com.spring.toby.HelloSpring"></bean>  
</beans>

和控制器java文件

public class HelloController implements Controller{

@Autowired HelloSpring helloSpring;
public ModelAndView handleRequest(HttpServletRequest request,
        HttpServletResponse response) throws Exception {
    // TODO Auto-generated method stub
    String name = request.getParameter("name");
    String msg = this.helloSpring.sayHello(name);
    System.out.println(msg);
    Map<String, Object> model = new HashMap<String, Object>();
    model.put("msg", msg);
    return new ModelAndView("WEB-INF/views/hello.jsp", model);
}
}

和bean文件

public class HelloSpring {
public String sayHello(String name){
    return "Hello " + name;
}
}

和jsp文件

</head>
    <body>
    <div><h1>Testing</h1></div>
    ${message}
    </body>

任何人都可以告诉我,我做错了什么?提前谢谢。

1 个答案:

答案 0 :(得分:1)

这只是一个愚蠢的错误。

请使用 $ {msg} 替换jsp中的 $ {message} ,然后您将在jsp中打印消息。

希望这会对你有所帮助。

干杯。