2010-05-24 156 views
1

我是Spring MVC 3.0的新手,並試圖寫一個示例webapp來獲得它的感覺。我能得到的網址叫我相關的控制器,但不能轉寄請求從我的jsp資源通過瀏覽器上的輸出指示:spring3.0 mvc問題(請求的資源不可用)

所請求的資源 (/ Spring30HelloWorld/helloworldcontroller) 不可用。

有關修復這個問題的建議,我們將不勝感激!請參閱下面的代碼設置。

在此先感謝!

web.xml中(位置:/的WebContent)

<?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>Spring30HelloWorld</display-name> 
<servlet> 
    <servlet-name>A</servlet-name> 
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> 
    <load-on-startup>1</load-on-startup> 
</servlet> 
<servlet-mapping> 
    <servlet-name>A</servlet-name> 
    <url-pattern>*.htm</url-pattern> 
</servlet-mapping> 
<welcome-file-list> 
    <welcome-file>index.htm</welcome-file> 
</welcome-file-list> 
</web-app> 

A-servlet.xml中(位置:/的WebContent/WEB-INF /)

<?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:p="http://www.springframework.org/schema/p" 
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" /> 
</beans> 

HelloWorldController.java(位置:/ SRC/COM /控制器)

package com.controller; 
import org.springframework.stereotype.Controller; 
import org.springframework.web.bind.annotation.RequestMapping; 
import org.springframework.web.portlet.ModelAndView; 


@Controller 
public class HelloWorldController { 

@RequestMapping("/helloWorld") 
public ModelAndView sayHello() { 
    System.out.println("hello!"); 
    //return new ModelAndView("helloworld.jsp", "hello", "hello"); 
    return new ModelAndView("helloworld.jsp"); 
} 

} 

的helloWorld.jsp(位置:/的WebContent /)

<html> 
<head> 
<title>Hello World</title> 
</head> 
<body> 
<h1>Simple Spring 3.0 Web App</h1> 

<p></p> 
</body> 
</html> 

回答

3

你的* .htm映射你的servlet

變化

@RequestMapping("/helloWorld") 

@RequestMapping("/helloWorld.htm") 

,並鍵入/A/helloworld.htm

此外,你可以閱讀Spring MVC框架online doc

+0

我現在發現問題了。 ModelAndView的名稱空間應該是servlet而不是portlet。無論如何感謝您的反饋! – Daniel 2010-05-24 16:22:52