我在春天使用MVC从这个网站获取帮助,制作简单的hello world http://viralpatel.net/blogs/spring-3-mvc-create-hello-world-application-spring-3-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>Spring3MVC</display-name>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<servlet>
<servlet-name>spring</servlet-name>
<servlet-class>
org.springframework.web.servlet.DispatcherServlet
</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>spring</servlet-name>
<url-pattern>*</url-pattern>
</servlet-mapping>
</web-app>
弹簧servlet.xml中
<?xml version="1.0" encoding="UTF-8"?>
<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-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">
<context:component-scan
base-package="net.viralpatel.spring3.controller" />
<mvc:annotation-driven />
<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/jsp/" />
<property name="suffix" value=".jsp" />
</bean>
</beans>
控制器
@Controller
public class HelloWorldController {
@RequestMapping("/hello")
public ModelAndView helloWorld() {
String message = "Hello World, Spring 3.0!";
System.out.println(message);
return new ModelAndView("hello", "message", message);
}
}
我使用上面的url下载代码并运行
的http:// * ** :8080 / Spring3MVC /你好** 的的http:// * ** :8080 / Spring3MVC /指数** http:// * ** :8080 / Spring3MVC / hello.jsp **我收到此错误
得到错误 他请求的资源(/ Spring3MVC)不可用。
答案 0 :(得分:0)
首先,您正在向
发出请求/Spring3MVC
(假设/Spring3MVC
是您的上下文路径),将@Controller
处理程序方法映射到
/Spring3MVC/hello
其次,您的@Controller
未注册。为此,您需要添加
<mvc:annotation-driven />
到spring-servlet.xml
上下文配置,同时还将mvc
命名空间添加到命名空间声明中。
首先阅读documentation,不管多长时间。
答案 1 :(得分:0)
您的调度程序servlet正在映射所有* url,并且您的端点使用/ hello url,因此请尝试:
http://***:8080/Spring3MVC/hello
或
http://***:8080/hello
取决于您的应用程序服务器上下文设置
另请将<mvc:annotation-driven />
添加到您的上下文配置中,以“开启”@Contoller
注释