gpt4 book ai didi

java - 在名称为 ___ 的 DispatcherServlet 中未找到 URL ___ 的 HTTP 请求的映射

转载 作者:行者123 更新时间:2023-12-02 11:24:42 24 4
gpt4 key购买 nike

我一直在寻找解决此错误的方法,但找不到答案。不断收到此错误:

Apr 06, 2018 1:40:36 PM org.springframework.web.servlet.DispatcherServlet noHandlerFound

WARNING: No mapping found for HTTP request with URI [/spring-tutorial/] in DispatcherServlet with name 'offers'

我正在 JDK 1.8、tomcat 8.0 上运行,并在最新的 eclipse IDE 上运行。

我的 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"
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>spring-tutorial</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>
<servlet>
<description></description>
<display-name>offers</display-name>
<servlet-name>offers</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>

</servlet>
<servlet-mapping>
<servlet-name>offers</servlet-name>
<url-pattern>/</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:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.2.xsd">
<mvc:default-servlet-handler/>
<mvc:annotation-driven></mvc:annotation-driven>
<context:component-scan
base-package="com.emenpy.spring.web.controllers">
</context:component-scan>
<bean id="jspViewResolver"
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/jsps/"></property>
<property name="suffix" value=".jsp"></property>
</bean>
</beans>

我的 OffersController.java

package com.emenpy.spring.web.controllers;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;

@Controller
public class OffersController {

@RequestMapping("/")
public String showHome() {
return "home";
}

}

还有我的 home.jsp

<html>
<body>
<h2>Hello World!</h2>
</body>
</html>

这是我的目录树: enter image description here

最佳答案

您的 jsp 应该命名为“home.jsp”而不是“index.jsp”

扫描中您的包名称是

<context:component-scan 
base-package="com.emenpy.spring.web.controllers">
</context:component-scan>

当它应该像你的目录树所示时

<context:component-scan 
base-package="com.cuong.spring.web.controllers">
</context:component-scan>

由于扫描未找到您的 Controller ,因此映射未完成

关于java - 在名称为 ___ 的 DispatcherServlet 中未找到 URL ___ 的 HTTP 请求的映射,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49700749/

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