org.springframework.web.servlet.PageNotFound noHandlerFound spring
Posted
技术标签:
【中文标题】org.springframework.web.servlet.PageNotFound noHandlerFound spring【英文标题】: 【发布时间】:2016-02-09 15:02:00 【问题描述】:我正在使用 spring MVC 和 spring security 构建应用程序,当我输入用户名和密码时,我无法导航到下一页(索引)。这是我的代码,请帮助我。
spring-servlet
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:jee="http://www.springframework.org/schema/jee" xmlns:lang="http://www.springframework.org/schema/lang"
xmlns:p="http://www.springframework.org/schema/p" xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:util="http://www.springframework.org/schema/util"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee.xsd
http://www.springframework.org/schema/lang http://www.springframework.org/schema/lang/spring-lang.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd">
<context:annotation-config/>
<context:component-scan base-package="com.AppFirst.controller"/>
<bean id="viewResolver" class="org.springframework.web.servlet.view.UrlBasedViewResolver">
<property name="viewClass" value="org.springframework.web.servlet.view.JstlView"/>
<property name="prefix" value="/WEB-INF/jsp/"/>
<property name="suffix" value=".jsp"/>
</bean>
<tx:annotation-driven />
web.xml
<?xml version="1.0" encoding="UTF-8"?>
http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
<display-name>AppFirst</display-name>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>
/WEB-INF/spring-servlet.xml
/WEB-INF/security-context.xml
</param-value>
</context-param>
<listener>
<listener-class>
org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>
<listener>
<listener-class>
org.springframework.web.util.Log4jConfigListener
</listener-class>
</listener>
<filter>
<filter-name>springSecurityFilterChain</filter-name>
<filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
</filter>
<filter-mapping>
<filter-name>springSecurityFilterChain</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<servlet>
<servlet-name>spring</servlet-name>
<servlet-class>
org.springframework.web.servlet.DispatcherServlet
</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>spring</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
<listener>
<listener-class>
org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>
</web-app>
LoginController.java
@Controller
公共类登录控制器
@RequestMapping("/login")
public String doLogin()
return "login";
【问题讨论】:
在你的 spring-servlet.xml 中添加 我更改了我的 spring-servlet 架构.....但它不起作用我添加了 这是错误警告:没有为带有 URI 的 HTTP 请求找到映射[/AppFirst/index] 在 DispatcherServlet 中,名称为“spring” 【参考方案1】:您需要在 spring-servlet.xml 中添加 "<mvc:annotation-driven/>
"
此外,正如错误提示的那样,您需要检查您遇到问题的 URL 是否映射到具有 @RequestMapping
的控制器
【讨论】:
我改变了我的 spring-servlet 架构.....`但它不起作用我添加了 这是错误警告:在名为“spring”的 DispatcherServlet 中找不到具有 URI [/AppFirst/index] 的 HTTP 请求的映射 你有一个映射到 URI /AppFirst/index 的控制器吗? 不,我正在使用 Spring Security 进行重定向:以上是关于org.springframework.web.servlet.PageNotFound noHandlerFound spring的主要内容,如果未能解决你的问题,请参考以下文章