org.springframework.web.servlet.DispatcherServlet noHandlerFound r囧r小猫 2022-06-15 11:38 107阅读 0赞 ### 页面显示 ![这里写图片描述][SouthEast] ### ### 后台显示 org.springframework.web.servlet.DispatcherServlet noHandlerFound ### No mapping found for HTTP request with URI [/springmvc_first/jsp/items/queryItem.action] in DispatcherServlet with name 'springmvc' #### 访问的地址是:[`http://127.0.0.1/springmvc_first/jsp/items/queryItem.action`][http_127.0.0.1_springmvc_first_jsp_items_queryItem.action] 项目结构 ![这里写图片描述][SouthEast 1] #### # 前端控制器的配置 # <?xml version="1.0" encoding="UTF-8"?> <web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"> <!-- springmvc前端控制器 --> <servlet> <servlet-name>springmvc</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <!-- 配置springmvc加载的配置文件(配置处理器映射器、适配器等) --> <init-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:springmvc.xml</param-value> </init-param> </servlet> <servlet-mapping> <servlet-name>springmvc</servlet-name> <url-pattern>*.action</url-pattern> </servlet-mapping> </web-app> # 有人说是`*.action`的问题 # 再看一下在spring.xml中配置的Handler <!-- 配置Handler --> <bean name="/queryItem.action" class="com.ld.springmvc.controller.ItemsController" /> #### 原来是访问路径的问题,配置的是/queryItem.action #### #### 访问的路径应该是:127.0.0.1/springmvc\_first/queryItem.action #### [SouthEast]: /images/20220615/98711a2717d94b3b853ed4a7cb1d9723.png [http_127.0.0.1_springmvc_first_jsp_items_queryItem.action]: http://127.0.0.1/springmvc_first/jsp/items/queryItem.action [SouthEast 1]: /images/20220615/b56fa7be109a4878b0ed89163a08c878.png
相关 org.springframework.web.servlet.DispatcherServlet.noHandlerFound No mapping found for HTTP request低级 rg.springframework.web.servlet.DispatcherServlet。noHandlerFound在名为“DispatcherServlet”... 深碍√TFBOYSˉ_/ 2024年04月19日 14:29/ 0 赞/ 48 阅读
相关 【noHandlerFound(DispatcherServlet.java:1278)和No mapping for GET】SpringMVC 404和中文乱码问题和解决方案记录 文章目录 前言 demo项目概述 项目结构 tomcat服务器配置 相关java代码 相关配置文件 超、凢脫俗/ 2023年10月02日 18:47/ 0 赞/ 3 阅读
相关 org.springframework.web.servlet.DispatcherServlet noHandlerFound 页面显示 ![这里写图片描述][SouthEast] 后台显示 org.springframework.web.servlet r囧r小猫/ 2022年06月15日 11:38/ 0 赞/ 108 阅读
相关 SSM项目遇到的问题(noHandlerFound错误) 出现这个问题的第一步先检查各配置文件是否正确 这一步大部分的人应该没有问题 这一步没有问题,接下来看打包后的文件是否都包含进来(这步很重要,我就出现在这一步) ! 我会带着你远行/ 2021年12月14日 05:31/ 0 赞/ 254 阅读
相关 关于问题PageNotFound.noHandlerFound No mapping found for HTTP的解决 今天做springmvc的第一个案例,使用idea开发,一切参照别人的, [https://www.cnblogs.com/best/p/5659596.html][http 小鱼儿/ 2021年09月28日 01:50/ 0 赞/ 237 阅读
还没有评论,来说两句吧...