警告:在具有名称的 DispatcherServlet 中找不到具有 URI [] 的 HTTP 请求的映射
Posted
技术标签:
【中文标题】警告:在具有名称的 DispatcherServlet 中找不到具有 URI [] 的 HTTP 请求的映射【英文标题】:WARNING: No mapping found for HTTP request with URI [ ] in DispatcherServlet with name 【发布时间】:2014-03-14 21:49:39 【问题描述】:我的 web.xml 为
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/applicationContext.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<servlet>
<servlet-name>dispatcher</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>2</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>dispatcher</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
applicationContext 为
<?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:p="http://www.springframework.org/schema/p"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.1.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.1.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd"
>
<context:component-scan base-package="com.mindedges" />
</beans>
Dispatcher servlet 为
<?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:p="http://www.springframework.org/schema/p"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.1.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.1.xsd">
<bean class="org.springframework.web.servlet.mvc.support.ControllerClassNameHandlerMapping"/>
<!--
Most controllers will use the ControllerClassNameHandlerMapping above, but
for the index controller we are using ParameterizableViewController, so we must
define an explicit mapping for it.
-->
<bean id="urlMapping" class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
<property name="mappings">
<props>
<prop key="index.htm">indexController</prop>
</props>
</property>
</bean>
<bean id="viewResolver"
class="org.springframework.web.servlet.view.InternalResourceViewResolver"
p:prefix="/WEB-INF/jsp/"
p:suffix=".jsp" />
<!--
The index controller.
-->
<bean name="indexController"
class="org.springframework.web.servlet.mvc.ParameterizableViewController"
p:viewName="index" />
</beans>
com. mindges.testapp 包中的控制器
@Controller
@RequestMapping("/sample")
public class SampleController
public String sample(Model model)
return "sample.jsp";
当我点击http://localhost:8084/TestApp/sample
时。
警告:在带有名称的 DispatcherServlet 中找不到带有 URI [/TestApp/sample] 的 HTTP 请求的映射
此外,当春天开始时,我看不到 Testapp/sample 的处理程序已加载
我猜我的组件扫描不起作用。为什么会这样?其他原因
编辑: 调度程序上下文是
<?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:p="http://www.springframework.org/schema/p"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.1.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.1.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd
">
<context:component-scan base-package="com.mindedges" />
<bean class="org.springframework.web.servlet.mvc.support.ControllerClassNameHandlerMapping"/>
<!--
Most controllers will use the ControllerClassNameHandlerMapping above, but
for the index controller we are using ParameterizableViewController, so we must
define an explicit mapping for it.
-->
<bean id="urlMapping" class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
<property name="mappings">
<props>
<prop key="index.htm">indexController</prop>
</props>
</property>
</bean>
<bean id="viewResolver"
class="org.springframework.web.servlet.view.InternalResourceViewResolver"
p:prefix="/WEB-INF/jsp/"
p:suffix=".jsp" />
<!--
The index controller.
-->
<bean name="indexController"
class="org.springframework.web.servlet.mvc.ParameterizableViewController"
p:viewName="index" />
</beans>
【问题讨论】:
【参考方案1】:返回不带.jsp
文件扩展名的视图名称。视图名称的解析由InternalResourceViewResolver
处理。
public String sample(Model model)
return "sample";
你的配置的这个sn-p:
<bean id="viewResolver"
class="org.springframework.web.servlet.view.InternalResourceViewResolver"
p:prefix="/WEB-INF/jsp/"
p:suffix=".jsp" />
获取视图名称 sample
并应用适当的前缀 (/WEB-INF/jsp/
) 和后缀 (.jsp
) 以形成用于解析视图的整个视图名称。
还要确保sample.jsp
位于/WEB-INF/jsp/sample.jsp
。
此外,当使用 @RequestMapping
注释时,您必须通过包含 <mvc:annotation-driven/>
在调度程序 serlvet 的配置中启用这些注释。
您还必须在调度程序配置中添加组件扫描,以便将控制器注册到调度程序 servlet。目前,您在applicationContext.xml
配置文件中执行组件扫描:
<context:component-scan base-package="com.mindedges" />
但是,由于此组件扫描发生在 applicationContext
文件中,因此已注册的 bean(假设它们是您的控制器)对于调度程序 serlvet 将不可用。您必须将此配置 sn-p 放在 dispatcher-context.xml
中。
很多人想咨询我的previous answers 之一,了解调度程序配置和上下文配置之间的差异。
您的 dispatcher-context.xml 文件中还有一些空格,并且缺少 mvc
命名空间。我已更正这些问题并在此GitHub Gist 中提供。
【讨论】:
移动了 jsp 文件夹下的 sample.jsp。还更改了代码以返回“sample”。仍然无法正常工作。同样的问题。我认为组件扫描不起作用。当弹簧加载时,它显示了 url 的映射模式及其处理程序在日志中对吗? 将<mvc:annotation-driven/>
添加到调度程序配置以使用@RequestMapping
注释。
您还应该在调度程序配置中而不是在上下文配置中添加对控制器的组件扫描,以便将控制器注册到调度程序 servlet。
在我的脑海中,我不确定 spring 是否显示了其映射的所有 url 模式,但它确实显示了所有已注册的 bean。
是否有理由将调度程序 servlet 加载到第二个而不是第一个?【参考方案2】:
更改请求映射的名称,与它尝试返回的 jsp 具有不同的名称
【讨论】:
以上是关于警告:在具有名称的 DispatcherServlet 中找不到具有 URI [] 的 HTTP 请求的映射的主要内容,如果未能解决你的问题,请参考以下文章
疑难解答“具有非复合名称的 use 语句......没有效果”