Spring MVC 请求映射不起作用
Posted
技术标签:
【中文标题】Spring MVC 请求映射不起作用【英文标题】:Spring MVC request mapping not working 【发布时间】:2014-05-15 02:46:09 【问题描述】:我想用一个控制器创建简单的 hello world 应用程序。没有任何类的普通 spring 可以工作,但是当我添加控制器、更改 xml 文件(按照分步教程)并尝试打开 localhost/project/hello.html 时,它会抛出 404 错误。
package com.beingjavaguys.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.servlet.ModelAndView;
@Controller
public class HomeController
@RequestMapping("/hello")
public ModelAndView test()
String message = "Welcome to Spring 4.0 !";
return new ModelAndView("hello", "message", message);
web.xml:
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.1" xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee
http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd">
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/applicationContext.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<servlet>
<servlet-name>dispatcher</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>2</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>dispatcher</servlet-name>
<url-pattern>*.htm</url-pattern>
</servlet-mapping>
<session-config>
<session-timeout>
30
</session-timeout>
</session-config>
<welcome-file-list>
<welcome-file>redirect.jsp</welcome-file>
</welcome-file-list>
</web-app>
调度程序-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"
xmlns:p="http://www.springframework.org/schema/p"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.2.xsd">
<context:component-scan base-package="com.beingjavaguys.controller" />
<bean class="org.springframework.web.servlet.mvc.support.ControllerClassNameHandlerMapping"/>
<!--
Most controllers will use the ControllerClassNameHandlerMapping above, but
for the index controller we are using ParameterizableViewController, so we must
define an explicit mapping for it.
-->
<bean id="urlMapping" class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
<property name="mappings">
<props>
<prop key="index.htm">indexController</prop>
</props>
</property>
</bean>
<bean id="viewResolver"
class="org.springframework.web.servlet.view.InternalResourceViewResolver"
p:prefix="/WEB-INF/jsp/"
p:suffix=".jsp" />
<!--
The index controller.
-->
<bean name="indexController"
class="org.springframework.web.servlet.mvc.ParameterizableViewController"
p:viewName="index" />
</beans>
我尝试将@RequestMapping
更改为("/hello.htm")
,添加请求类型,添加@RequestMapping
信息整个班级,但没有任何效果。怎么了?
【问题讨论】:
请发布您的 Redirect.jsp。 尝试打开localhost/project/hello.htm?将调度程序的启动负载更改为1
- 就是这样
@Octopus 打开它显示404错误,我写在线程的顶部。
是的,您说您打开时使用了.html
扩展名。现在,只需 .htm
!
【参考方案1】:
您需要将<mvc:annotation-driven />
或@EnableWebMvc
添加到您的配置中,以在Java 代码中启用MVC-config。
http://docs.spring.io/spring/docs/4.0.3.RELEASE/spring-framework-reference/htmlsingle/#mvc-config-enable
【讨论】:
以上是关于Spring MVC 请求映射不起作用的主要内容,如果未能解决你的问题,请参考以下文章
为啥@JavaConfig 在 Spring MVC 中不起作用?
Spring mvc 4 ResourceHandlers不起作用[重复]