猿问

无法将对象从控制器传递到Spring MVC中的查看页面

我将要从控制器传递“ greetings”对象到视图页面,但是输出将以$ {greetings}的形式出现,因为它应该显示为“ WELCOME TO SPRING”。我在代码中到处都看过,但我没有弄错是什么。我之前已经做过,但是第一次遇到这个错误。请有人帮我。


@RequestMapping(value= {"/","/home","/index"})

    public ModelAndView index() {

        ModelAndView mv=new ModelAndView("page");

        mv.addObject("greetings","WELCOME TO SPRING");

        return mv;

    }

page.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" "http://www.w3.org/TR/html4/loose.dtd">

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">

<title>Insert title here</title>

</head>

<body>

<h1>${greetings}</h1>

</body>

</html>

dispatcher-servlet.xml


<beans xmlns = "http://www.springframework.org/schema/beans"

   xmlns:context = "http://www.springframework.org/schema/context"

   xmlns:mvc = "http://www.springframework.org/schema/mvc"

   xmlns:xsi = "http://www.w3.org/2001/XMLSchema-instance"

   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.xsd


   http://www.springframework.org/schema/mvc

   http://www.springframework.org/schema/mvc/spring-mvc.xsd



   ">


   <context:component-scan base-package="com.ashwin.pasalstore.controller " />


   <bean id="viewResolver"

              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>

web.xml


<!DOCTYPE web-app PUBLIC

 "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"

 "http://java.sun.com/dtd/web-app_2_3.dtd" >


白衣染霜花
浏览 148回答 1
1回答
随时随地看视频慕课网APP

相关分类

Java
我要回答