當(dāng)前位置:首頁(yè) > IT技術(shù) > 編程語(yǔ)言 > 正文

Spring 的 IOC 容器和SpringMVC 的IOC容器
2022-02-14 14:13:47


不知道你們配置的時(shí)候,會(huì)不會(huì)引入兩次Bean的情況

需要進(jìn)行 Spring 整合 SpringMVC 嗎?還是否需要再加入 Spring 的 IOC 容器?

是否需要再 web.xml 文件中配置啟動(dòng) Spring IOC 容器的 ContextLoaderListener


  1. 需要: 通常情況下, 類似于數(shù)據(jù)源, 事務(wù), 整合其他框架都是放在 spring 的配置文件中(而不是放在 SpringMVC 的配置文件中).
    實(shí)際上放入 Spring 配置文件對(duì)應(yīng)的 IOC 容器中的還有 Service 和 Dao.
    一般情況下,我們都會(huì)使用需要,分開(kāi)放置spring-mvc 和spring的配置文件
  2. 不需要: 都放在 SpringMVC 的配置文件中. 也可以分多個(gè) Spring 的配置文件, 然后使用 import 節(jié)點(diǎn)導(dǎo)入其他的配置文件

Spring 的 IOC 容器和 SpringMVC 的 IOC 容器掃描的包有重合的部分, 就會(huì)導(dǎo)致有的 bean 會(huì)被創(chuàng)建 2 次

Spring-applicationContext.xml 中
<context:component-scan base-package="com.jet"></context:component-scan>

spring-dispatcher.xml中
<context:component-scan base-package="com.jet"></context:component-scan>
<!-- 設(shè)置Spring容器加載配置文件的路徑 -->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:Spring-applicationContext.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<!-- 前段控制器(Spring核心控制器) -->
<servlet>
<servlet-name>springmvc</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:spring-dispatcher.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>springmvc</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>

上面的配置會(huì)導(dǎo)致 Bean 被創(chuàng)建兩次所以 Spring 的 IOC 容器不應(yīng)該掃描 SpringMVC 中的 bean, 對(duì)應(yīng)的SpringMVC 的 IOC 容器不應(yīng)該掃描 Spring 中的 bean。

解決:

1 使 Spring 的 IOC 容器掃描的包和 SpringMVC 的 IOC 容器掃描的包沒(méi)有重合的部分.但是有時(shí)候我們按業(yè)務(wù)模塊創(chuàng)建包名,就不可避免有包重合。這個(gè)是之前寫(xiě)的項(xiàng)目的做法。

spring-IOC

<context:component-scan base-package="com.hdu.cms.modules.*.dao"></context:component-scan>
<context:component-scan base-package="com.hdu.cms.modules.*.service"></context:component-scan>
<context:component-scan base-package="com.hdu.cms.modules.*.entity"></context:component-scan>

spring-mvc

<context:component-scan base-package="com.hdu.cms.modules.*.action"></context:component-scan>

2 使用 exclude-filter 和 include-filter 子節(jié)點(diǎn)來(lái)規(guī)定只能掃描的注解

Spring-applicationContext.xml 中

<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"
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.2.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.2.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-3.2.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-3.2.xsd ">

<!-- proxy-target-class默認(rèn)"false",更改為"ture"使用CGLib動(dòng)態(tài)代理 -->
<aop:aspectj-autoproxy proxy-target-class="true" />
<!-- 采用注釋的方式配置bean,當(dāng)配置掃描包的時(shí)候,可以省去配置這個(gè)context:annotation-config -->
<!--<context:annotation-config />-->
<!-- 組件掃描 -->
<context:component-scan base-package="com.jet"><!--讓spring IOC 不掃描指定注解-->
<context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
<context:exclude-filter type="annotation" expression="org.springframework.web.bind.annotation.ControllerAdvice"/>
</context:component-scan>
<!-- 加載數(shù)據(jù)庫(kù)配置文件 -->
<context:property-placeholder location="classpath:db.properties"/>

<import resource="spring-mybatis.xml"></import>
</beans>

spring-dispatcher.xml中

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

<!-- 容器默認(rèn)的DefaultServletHandler處理 所有靜態(tài)內(nèi)容與無(wú)RequestMapping處理的URL-->
<mvc:default-servlet-handler/>

<!-- 組件掃描 -->
<context:component-scan base-package="com.jet" use-default-filters="false">
<context:include-filter type="annotation"
expression="org.springframework.stereotype.Controller"/>
<context:include-filter type="annotation"
expression="org.springframework.web.bind.annotation.ControllerAdvice"/>
</context:component-scan>

<!-- proxy-target-class默認(rèn)"false",更改為"ture"使用CGLib動(dòng)態(tài)代理 -->
<aop:aspectj-autoproxy proxy-target-class="true" />


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

<!--啟動(dòng)注解功能 注冊(cè)請(qǐng)求url和注解POJO類方法的映射并設(shè)置@ResponseBody返回中文亂碼問(wèn)題-->
<mvc:annotation-driven>
<mvc:message-converters register-defaults="true">
<bean class="org.springframework.http.converter.StringHttpMessageConverter">
<constructor-arg value="UTF-8" />
</bean>
<bean class="org.springframework.http.converter.json.MappingJackson2HttpMessageConverter">
<property name="objectMapper">
<bean class="org.springframework.http.converter.json.Jackson2ObjectMapperFactoryBean">
<property name="failOnEmptyBeans" value="false" />
</bean>
</property>
</bean>
</mvc:message-converters>
</mvc:annotation-driven>

<!-- 文件上傳的解析器
要想使用表單提交enctype="multipart/form-data"格式的數(shù)據(jù)(如上傳圖片),需要配置此解析器,不配置的話參數(shù)綁定會(huì)失敗 -->
<bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
<!-- 設(shè)置上傳文件的最大尺寸為5MB -->
<property name="maxUploadSize">
<value>5242880</value>
</property>
<property name="defaultEncoding" value="utf-8"></property>
</bean>

</beans>

SpringMVC的 IOC 容器是 Spring IOC 容器的子容器

SpringMVC的IOC容器中的bean可以來(lái)引用 Spring IOC 容器中的 bean.

返回來(lái)呢 ? 反之則不行. Spring IOC 容器中的 bean 卻不能來(lái)引用 SpringMVC IOC 容器中的 bean!多個(gè) Spring IOC 容器之間可以設(shè)置為父子關(guān)系,以實(shí)現(xiàn)良好的解耦。

Spring MVC WEB 層容器可作為 “業(yè)務(wù)層” Spring容器的子容器:即 WEB層容器可以引用業(yè)務(wù)層容器的 Bean,而業(yè)務(wù)層容器卻訪問(wèn)不到 WEB 層容器的 Bean

SpringMVC 的 IOC 容器是 Spring IOC 容器關(guān)系圖解

Spring 的 IOC 容器和SpringMVC 的IOC容器_spring mvc



本文摘自 :https://blog.51cto.com/u

開(kāi)通會(huì)員,享受整站包年服務(wù)立即開(kāi)通 >