gpt4 book ai didi

Tomcat 未调用 Spring MVC Controller

转载 作者:行者123 更新时间:2023-11-28 21:47:50 25 4
gpt4 key购买 nike

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

我已经为此苦苦挣扎了几天,尝试了我在这里和其他地方看到的各种解决方案,但没有任何效果。我在 Tomcat 中部署了一个 Spring MVC Controller ,但无法访问它。

工具:

Spring 3.2.0
Tomcat 7
Java 1.6

Spring Controller :

@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>

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 过滤器等变体,但都无法正常工作。

最佳答案

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

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

关于Tomcat 未调用 Spring MVC Controller ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16286154/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com