Spring中的Bean上下文

时间:2013-03-22 18:43:45

标签: spring java-ee servlets web.xml

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

我的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它的错误。如果我没有在spring上下文中放置mvc-dispatcher的内容,那么也会发生错误。

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

2 个答案:

答案 0 :(得分:2)

一些事情:

  • 您的web.xml看起来正确
  • InternalResourceViewResolver应仅存在于mvc-dispatcher-servlet.xml中,因为它与MVC直接相关 - 从spring-context.xml
  • 中删除
  • 您可以在两个配置文件中都有context:component-scan,但他们应该扫描不同的包。 servlet xml中的那个通常是组件扫描你的控制器包(以及与MVC直接相关的任何其他东西),而你的父弹簧上下文xml中的那个通常会扫描你的服务,DAO等。通常,你的组件扫描包裹应该非常具体; 你永远不应该指向整个应用程序的基础包!
  • 您可以删除context:annotation-config - 如果您有context:component-scan
  • ,这是多余的

答案 1 :(得分:0)

您的MVC上下文应该只有与MVC相关的配置,通常包括ViewResolvers,FileUpload,PropertyFiles,Message / Theme Resolvers等。您的applicationContext将具有与DAO,Service和其他工具相关的bean。安全文件应具有安全配置。要更好地了解并了解良好/推荐的做法,请查看spring greehouse代码。