Tomcat不调用Spring MVC控制器

时间:2013-04-29 18:57:43

标签: spring tomcat spring-mvc

更新:不知何故,经过另一轮调整和重新部署后,localhost:8080 / ping-1.0 / ping开始工作。配置文件仍然如下。我希望在不知情的情况下知道我修复了什么,但现在已经解决了。

我一直在努力解决这个问题几天,尝试了我在这里和其他地方看过的各种解决方案,但没有任何效果。我在Tomcat中部署了一个Spring MVC控制器,但无法访问它。

工具:

Spring 3.2.0
Tomcat 7
Java 1.6

Spring控制器:

@Controller
public class PingController {

@RequestMapping("/ping")
public String ping (Model model) throws Exception {
    System.out.println("ping ping ping");
    String s = (new Date()).toString();
    model.addAttribute("message", s);
    return "ping";
}
}

的web.xml:

<?xml version="1.0" encoding="UTF-8"?>

<web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">

<servlet>
    <servlet-name>ping</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class><init-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>/WEB-INF/ping-servlet.xml</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
</servlet>

<servlet-mapping>
    <servlet-name>ping</servlet-name>
    <url-pattern>/ping</url-pattern>
</servlet-mapping>

</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:mvc="http://www.springframework.org/schema/mvc"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="
    http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
    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="myclass.ping"/>

<mvc:annotation-driven />
</beans>

WAR文件名为ping-1.0.war。部署似乎没问题。我在$ CATALINA_BASE / webapps中看到一个名为ping-1.0的目录,这在catalina.log中:

INFO: Mapped "{[/ping],methods=[],params=[],headers=[],consumes=[],produces=[],custom=[]}" onto public java.lang.String myclass.ping.PingController.ping(org.springframework.ui.Model) throws java.lang.Exception

Tomcat正在端口8080上运行。我可以访问localhost:8080 / manager。但localhost:8080 / ping从Tomcat返回404消息。除了GET请求的记录之外,我在日志中看不到任何内容。完全没有错误。我尝试过很多变体请求映射,URL过滤等等,但是无法让它工作。

3 个答案:

答案 0 :(得分:4)

您的URL上没有上下文根,实际上您需要/ping/ping,因为调度程序servlet和ping控制器都映射到/ping。试试这个:

http://localhost:8080/ping-1.0/ping/ping

答案 1 :(得分:3)

@RequestMapping("/ping")

相对于调度程序servlet侦听的URL,表示/ping

<url-pattern>/ping</url-pattern>

这就是问题所在。这使您的调度程序servlet只侦听一个URL和一个URL。这假设是localhost:8080/ping-1.0/ping。但是你的控制器方法是相对的,所以它是localhost:8080/ping-1.0/ping/ping,并且disptacher servlet不会对该URL做出反应。你必须使用一种模式:

<url-pattern>/ping/*</url-pattern>

现在,调度程序servlet可以侦听 localhost:8080/ping-1.0/ping开始的所有网址。

最后一点:根据您的配置,您可能需要省略ping-1.0

答案 2 :(得分:0)

我认为你错误地配置了Spring。

我希望servlet是Spring的调度程序servlet,而不是你的ping控制器。这就是确定请求路由的位置。您没有前端控制器servlet。

我可能会想到Spring 2.x及更早版本。如果Spring 3.x改变了对调度员的需求,我会承认我是不正确的。但这就是我的应用程序的设置方式。