我刚刚开始Spring MVC framerwork。我正在尝试helloworld
示例但我检查过的每个教程都有一些我不知道的问题!
例如,当我点击sayhello
时,此项目有404错误:
我使用eclipse开普勒和tomcat 7.0和Spring 4.0;
所有Spring .jar文件都在构建路径中添加。
控制器:
package net.spring3.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.portlet.ModelAndView;
@Controller
public class HelloWorldController {
@RequestMapping(value = "/hello")
public ModelAndView helloWorld() {
String message = "Hello World";
return new ModelAndView("hello", "message", message);
}
}
spring-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: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="net.spring3.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/jsp/" />
<property name="suffix" value=".jsp" />
</bean>
</beans>
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>*.html</url-pattern>
</servlet-mapping>
</web-app>
WEB-INF / JSP / hello.jsp中:
<html>
<head>
<title>Spring</title>
</head>
<body>${message}
</body>
</html>
index.jsp:
<html>
<head>
<title></title>
</head>
<body>
<a href="hello.html">Say Hello</a>
</body>
</html>
答案 0 :(得分:1)
更改
@RequestMapping(value = "/hello")
到
@RequestMapping(value = "/hello.html")
DefaultAnnotationHandlerMapping
注册的默认DispatcherServlet
无法处理路径扩展名映射。
您也可以指定
<mvc:annotation-driven />
在您的XML配置中使用适当的命名空间。这将注册一个RequestMappingHandlerMapping
,用于映射处理程序以匹配*.html
等扩展名映射。
本教程似乎有问题。
答案 1 :(得分:0)
之前我遇到过同样的问题,如果你的服务器引导你纠正路径WEB-INF / jsp / hello.jsp但该页面是404,那么它必须tomcat阻止你的页面。
所以我做的是将该页面移动到/webapp/WebContent/jsp/hello.jsp并将internalResuorceViewResolver的路径更改为/ WebContent / jsp
这应该可以解决问题。