Spring MVC HelloWorld

时间:2014-04-17 10:51:27

标签: java spring java-ee spring-mvc

我正在尝试使用Spring web mvc运行我的helloWorld程序但是我的JSP文件中存在问题..它无法读取添加到ModelMap的“message”属性的值..jsp页面正常打开但是它显示jsp EL,因为它是$ {message} ..而不是消息的值!!

处理机-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-4.0.xsd">

<context:component-scan base-package="com.shura" />
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="viewClass" value="org.springframework.web.servlet.view.JstlView"/>  
<property name="prefix" value="/WEB-INF/jsp/" />
<property name="suffix" value=".jsp" />
</bean>

</beans>

HelloWorld.java

package com.shura;

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
@RequestMapping("/hello")
public class HelloWorld {
@RequestMapping(method=RequestMethod.GET)
public String printHello(ModelMap model){
    model.addAttribute("message", "Hello World");
    return("hello");
}

}

的hello.jsp

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<html>
<body>
<h1>Spring MVC Hello World Example</h1>

<h2>${message}</h2>
</body>
</html>

的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" >

<web-app>
<display-name>Archetype Created Web Application</display-name>

<servlet>
<servlet-name>handler</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>handler</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>

5 个答案:

答案 0 :(得分:0)

是否可以在web.xml中将版本更改为2.4而不是2.3

<web-app id="WebApp_ID" version="2.4"
    xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee 
    http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">

另外,请检查您用于访问网页的网址:

http://{ip address or localhost}:{port}/{web app context}/hello/

答案 1 :(得分:0)

您的jsp页面标记存在问题

在没有taglib的jsp代码下使用即时解决方案

 <%@ page contentType="text/html; charset=UTF-8" %>
<html>
  <head>
      <title>Hello World</title>
</head>
<body>
 <h2>${message}</h2>
</body>
</html>

答案 2 :(得分:0)

是(/ hello)请求转到控制器?我猜你是直接访问jsp页面而不是通过控制器。此外,您是否可以更改请求映射URL或JSP名称并尝试?

答案 3 :(得分:-1)

据我记忆,当从方法printHello返回时,我们还必须返回一个包含视图信息和模型信息的对象。

虽然你正在塑造模特,但我看到的是你没有回归它。

您只返回一个被理解为视图名称的字符串。

因此,您需要返回ModelAndView的对象。

答案 4 :(得分:-1)

试试这个,

public class HelloWorld {
@RequestMapping(method=RequestMethod.GET)
public String printHello(ModelMap model){
    model.addAttribute();
    return new ModelAndView("hello","message", "Hello World");
}

希望这会有所帮助!!