2

我正在尝试改进我的 spring mvc 配置,以便我添加的每个 servlet 都不需要新的配置文件,但我遇到了问题。我尝试使用本教程作为起点,但遇到了一个我无法弄清楚的问题。

问题是当我对我的 servlet 执行 GET 操作时,我得到一个 404 错误。这是我的配置和来自控制器的代表性 java 片段:

网页.xml:

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" 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_2_5.xsd">
    <display-name>SightLogix Coordination System</display-name>

    <description>SightLogix Coordination System</description>

    <servlet>
        <servlet-name>Spring MVC Dispatcher Servlet</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>     
            <init-param>
                <param-name>contextConfigLocation</param-name>
                <param-value>
                    /WEB-INF/application-context.xml
                    /WEB-INF/application-security.xml
                </param-value>
            </init-param>
        <load-on-startup>1</load-on-startup>
    </servlet>

    <servlet-mapping>
        <servlet-name>Spring MVC Dispatcher Servlet</servlet-name>
        <url-pattern>/slcs/*</url-pattern>
    </servlet-mapping>

    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>
            /WEB-INF/application-context.xml
            /WEB-INF/application-security.xml
        </param-value>
    </context-param>

    <listener>
        <listener-class>
                org.springframework.web.context.ContextLoaderListener
        </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>
</web-app>

应用程序上下文.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/beans
        http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
        http://www.springframework.org/schema/mvc
        http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context-3.0.xsd"

    default-init-method="init" default-destroy-method="destroy">

    <mvc:annotation-driven />

    <context:component-scan base-package="top.level" />
</beans>

应用程序-security.xml:

<beans:beans xmlns="http://www.springframework.org/schema/security"
    xmlns:beans="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
                    http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-3.0.xsd">

    <http>
        <intercept-url pattern="/**" access="ROLE_MANAGER" requires-channel="https" />
        <http-basic />
    </http>

    <authentication-manager>
        <authentication-provider user-service-ref="myUserDetailsService">
            <password-encoder hash="sha"/>
        </authentication-provider>
    </authentication-manager>

    <beans:bean id="myUserDetailsService"
        class="path.to.my.UserDetailsServiceImpl">
    </beans:bean>

</beans:beans>

Controller 类的片段(其中之一,但它们看起来基本上都是这样的):

@Controller
@RequestMapping("/foo.xml")
public class FooController
{       
    @RequestMapping(method=RequestMethod.GET)
    public void handleGET(HttpServletRequest request, HttpServletResponse response) throws IOException
    {
        ...

谁能告诉我我做错了什么?谢谢!

4

3 回答 3

3

唯一不合适的地方是您为根 webapp 上下文servlet 上下文使用了相同的上下文配置文件。这几乎可以肯定是一个坏主意,并且会导致很多奇怪的行为。这很可能是您的问题的原因。

配置ContextLoaderListener,contextConfigLocation <context-param>并创建和管理 root WebApplicationContext

配置ServletDispatcherServlet,contextConfigLocation <init-param>并创建和管理 servlet WebApplicationContext

WebApplicationContext是 servlet appcontext 的父级,即根中的任何 bean 对WebApplicationContextservlet 中的那些 bean 都是可见的WebApplicationContext

您的第一步应该是分离这些配置。在正确的位置使用正确的 bean(例如,所有 MVC 内容都必须放在 servlet 上下文中)。不要两者之间共享 bean 定义,它只会变得混乱和/或损坏。

于 2010-05-11T22:19:22.210 回答
0

这并不能直接回答您的问题,但是当我无法弄清楚出了什么问题时,我总是发现在 Spring 中启用调试日志记录很有帮助。

以下是我在 logging.properties 文件中常用的两个:

org.springframework.beans.factory.support.level=FINEST
org.springframework.security.level=FINEST
于 2010-05-11T21:52:08.507 回答
0

GET RequestMapping您的控制器中是否有多个?如果有多个并且在将它们解析为特定请求时存在歧义,则 Spring 不会映射到任何歧义的 GET 映射。

于 2010-05-27T21:07:08.140 回答