0

我正在尝试学习 spring mvc 并面临一个问题(这似乎是一个常见的问题)。我已经搜索了很多解决方案,但没有任何帮助...

我的 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_2_5.xsd"
id="WebApp_ID" version="2.5">
<display-name>Spring Hello World</display-name>
<welcome-file-list>
    <welcome-file>hello.jsp</welcome-file>
</welcome-file-list>

<listener>
 <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
 </listener>

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

我的 chatbooster-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-3.0.xsd


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


   http://www.springframework.org/schema/context/spring-context-3.0.xsd">

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

<bean id="viewResolver"
    class="org.springframework.web.servlet.view.UrlBasedViewResolver">
    <property name="viewClass"
        value="org.springframework.web.servlet.view.JstlView" />
    <property name="prefix" value="/WEB-INF/" />
    <property name="suffix" value=".jsp" />
</bean>

当我尝试运行 hello.jsp 时,错误是请求的资源不可用。

你好.jsp:

   <%@page contentType="text/html" pageEncoding="UTF-8"%>
<%@taglib prefix="i" uri="http://java.sun.com/jsp/jstl/core" %> 
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"     
 <html>
<head>
<title>Home</title>
</head>
<body>
 <h1>Hello World!</h1>

 <hr/>

  <form action="hi">
   Name: <input type="text" name="name"> <input type="submit" value="Submit">
   </form>

 </body>
 </html>

HelloWorldController.ava

 @Controller
public class HelloWorldController {

@RequestMapping("/")
 public String hello() {
 return "hello";
 }

@RequestMapping(value = "/hi", method = RequestMethod.GET)
 public String hi(@RequestParam("name") String name, Model model) {
 String message = "Hi " + name + "!";
 model.addAttribute("message", message);
 return "hi";
}

}

编辑1:

问题是由于tomcat服务器而发生的,因为我的简单html页面也没有运行并且它抛出了同样的异常。我使用的是 Tomcat 服务器版本 7。任何人都可以提示我这个异常的原因吗?

4

3 回答 3

1

Tomcat 不知道 hello.jsp,因为它位于 WEB-INF 中。

改变

<welcome-file-list>
    <welcome-file>hello.jsp</welcome-file>
</welcome-file-list>

<welcome-file-list>
    <welcome-file>/</welcome-file>
</welcome-file-list>

它会起作用的。

于 2012-12-19T21:23:21.180 回答
0

这可能是 Hello.jsp 的情况。Hello.jsp 的第一个字母是大写的,但在您的控制器中,您返回的是小写的 hello。如果您更改控制器以返回字符串“Hello”,它应该可以工作。

于 2012-12-19T21:24:36.340 回答
0

谢谢大家的回答。实际上,我只需将 html 和 jsp 页面的位置从 web inf 文件夹更改为 web content 文件夹即可解决我的问题。我不知道它为什么起作用,但页面现在正在由服务器运行。

于 2012-12-20T17:19:26.233 回答