更新:不知何故,经过另一轮调整和重新部署,localhost:8080/ping-1.0/ping 开始工作。配置文件仍然如下。我希望我知道我在不知情的情况下修复了什么,但现在已经解决了。
我已经为此苦苦挣扎了几天,尝试了我在这里和其他地方看到的各种解决方案,但没有任何效果。我在 Tomcat 中部署了一个 Spring MVC 控制器,但无法访问它。
工具:
春天 3.2.0
Tomcat 7
Java 1.6
弹簧控制器:
@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";
}
}
网页.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>
ping-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 和 catalina.log 中看到了一个名为 ping-1.0 的目录:
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 过滤器等的变体,但无法让它工作。