0

该应用程序与以下配置文件完美配合:

我的 Web.XML 如下

<servlet>
    <servlet-name>mvc-dispatcher</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <init-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>/WEB-INF/classes/spring/mvc-dispatcher-servlet.xml</param-value>
    </init-param>
</servlet>

<servlet-mapping>
    <servlet-name>mvc-dispatcher</servlet-name>
    <url-pattern>*.do</url-pattern>
</servlet-mapping>

<listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>

<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>
    /WEB-INF/classes/spring/spring-context.xml,
      /WEB-INF/classes/spring/spring-security.xml
    </param-value>
</context-param>


<!-- Spring Security -->
<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>

我的 mvc-dispatcher-servlet

<bean
    class="org.springframework.web.servlet.view.InternalResourceViewResolver">
    <property name="prefix">
        <value>/pages/</value>
    </property>
    <property name="suffix">
        <value>.jsp</value>
    </property>
</bean>


<context:component-scan base-package="biz.canisrigel.slapMe" />

<!-- enable autowire -->
<context:annotation-config />

我的 spring-context.xml 是

<bean
    class="org.springframework.web.servlet.view.InternalResourceViewResolver">
    <property name="prefix">
        <value>/pages/</value>
    </property>
    <property name="suffix">
        <value>.jsp</value>
    </property>
</bean>

<context:component-scan base-package="biz.canisrigel.slapMe" />

<!-- enable autowire -->
<context:annotation-config />


<bean id="dataSource"
    class="org.springframework.jdbc.datasource.DriverManagerDataSource">
    <property name="driverClassName" value="com.mysql.jdbc.Driver" />
    <property name="url" value="jdbc:mysql://localhost/slapMe" />
    <property name="username" value="root" />
    <property name="password" value="adminadmin" />
</bean>

<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
    <property name="dataSource" ref="dataSource" />
    <property name="typeAliasesPackage" value="biz.canisrigel.slapMe.bean" />
</bean>

<!-- scan for mappers and let them be autowired -->
<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
    <property name="basePackage" value="biz.canisrigel.slapMe.mapper" />
</bean>

我无法正确运行 Spring Security,因为之前的 spring-context.xml 是 MVC 的调度程序 servlet 的 xml 配置文件。所以我将 spring-context 移动到 contextConfigLocation。但后来我不得不为调度员 servlet 提供一些东西。

我的问题是 mvc-dispatcher-servlet.xml 和 spring-context 具有相同的数据。如果我删除 mvc-dispatcher 它是一个错误。如果我没有将 mvc-dispatcher 的内容放在 spring 上下文中,那么也会发生错误。

我对概念的理解哪里出错了。

4

2 回答 2

2

一些东西:

  • web.xml看起来正确
  • InternalResourceViewResolver应该只存在于你的,mvc-dispatcher-servlet.xml因为它与 MVC 直接相关——将它从你的spring-context.xml
  • 您可以context:component-scan在两个配置文件中都有,但它们应该扫描不同的包。servlet xml 中的一个通常是组件扫描您的控制器包(以及与 MVC 直接相关的任何其他内容),而父 spring 上下文 xml 中的一个通常是扫描您的服务、DAO 等。通常,您的组件扫描包应该非常具体;你永远不应该将它指向整个应用程序的基础包!
  • 你可以删除context:annotation-config——如果你有context:component-scan
于 2013-03-22T19:12:16.757 回答
0

您的 MVC 上下文应该只有与 MVC 相关的配置,通常包括 ViewResolvers、FileUpload、PropertyFiles、消息/主题解析器等。您的 applicationContext 将包含与 DAO、Service 和其他实用程序相关的 bean。安全文件应该有安全配置。为了更好地理解和了解好的/推荐的做法,请查看spring greehouse代码。

于 2013-03-22T18:55:22.113 回答