使用spring mvc在浏览器上显示welcome grasage

时间:2017-07-25 13:04:49

标签: java spring spring-mvc

这里我试图在浏览器上打印消息“欢迎来自spring - mvc”。但它没有印刷。 这是我的控制器类,它处理请求。

package org.spring.controller;
import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap; 
import org.springframework.web.bind.annotation.RequestMapping; 
import org.springframework.web.bind.annotation.RequestMethod;

@Controller public class HelloWorldController {

    @RequestMapping(value="/",method=RequestMethod.GET)
    public String sayHello(Model model){
        model.addAttribute("message", "Welcome from spring - mvc");

        return "welcome";
    }
    @RequestMapping(value="/helloAgain",method=RequestMethod.GET)
    public String sayHelloAgain(ModelMap model){
        model.addAttribute("message", "Welcome again from spring - mvc");

        return "welcome";
    }
}

这是welcome.jsp,一个要显示的视图。

<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "w3.org/TR/html4/loose.dtd">

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>Helloworldxmlspring</title>
</head> 
<body> 
<h1>Welcome to Spring MVC</h1> 
<h3>${message}</h3>
<h2>hiiiiiiiiiii..</h2> 
</body> 
</html>

这是我的web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns="http://xmlns.jcp.org/xml/ns/javaee"
    xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
    id="WebApp_ID" version="3.1">
    <display-name>HelloWorldxml</display-name>
    <welcome-file-list>
    <welcome-file>/WEB-INF/views/welcome.jsp</welcome-file>
    </welcome-file-list>

    <servlet>
        <servlet-name>dispatch</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <init-param>

            <param-name>contextConfigLocation</param-name>
            <param-value>/WEB-INF/dispatch-servlet.xml</param-value>
        </init-param>
        <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
        <servlet-name>dispatch</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>
</web-app>

这是我的bean配置文件。

<?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-4.3.xsd">

<context:component-scan base-package="org.spring.controller.HelloWorldController"/>


<bean class = "org.springframework.web.servlet.view.InternalResourceViewResolver">

<property name="prefix">
<value>/WEB-INF/views/</value></property>
<property name="suffix">
<value>.jsp</value></property>
</bean>

</beans>

印刷

  

欢迎来到spring MVC和hiiiiiiiiiii ..

servlet发送的模型数据。即{message}不打印。是什么原因?

2 个答案:

答案 0 :(得分:1)

您需要使用Model而不是ModelMap,ModelMap只包含模型的信息。

@RequestMapping(value="/helloAgain",method=RequestMethod.GET)
public String sayHelloAgain(Model model){
model.addAttribute("message", "Welcome again from spring - mvc");

return "welcome";
}

对需要访问视图的所有控制器API执行此操作。

答案 1 :(得分:1)

@RequestMapping(value="/",method=RequestMethod.GET)
public ModelAndView sayHello(Model model){
    model.addAttribute("message", "Welcome from spring - mvc");
    return new ModelAndView("welcome");
}
@RequestMapping(value="/helloAgain",method=RequestMethod.GET)
public ModelAndView sayHelloAgain(Model model){
    model.addAttribute("message", "Welcome again from spring - mvc");
    return new ModelAndView("welcome");
}    

在Spring框架中,org.springframework.ui.Model主要用于向模型添加属性。允许以java.util.Map的形式访问整个模型。模型属性用作spring Web应用程序中的数据/信息传输障碍。

org.springframework.web.servlet.ModelAndView是Web MVC框架中Model和View的持有者。这个类只是为了使控制器能够在单个返回值中返回模型和视图。

因此,最好使用return new ModelAndView("welcome");return new ModelAndView("welcome","DATA",model);并在控制器中传递视图名称。因为return "welcome";有时可能无法在View中添加模型数据。