SpringMvc11---B站学习---整合spring

本文详细介绍了如何在SpringMVC中整合Spring框架,避免两者扫描包重合导致的bean重复创建问题。通过配置exclude-filter和include-filter,精确控制各框架的组件扫描范围,确保SpringMVC专注于控制器,而Spring负责其他组件。
摘要由CSDN通过智能技术生成

SpringMvc—整合spring

在这里插入图片描述

<!-- 配置启动 Spring IOC 容器的 Listener -->
	<context-param>
		<param-name>contextConfigLocation</param-name>
		<param-value>classpath:beans.xml</param-value>
	</context-param>
	<listener>
		<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
	</listener>

我们希望的是:

在这里插入图片描述

若 Spring 的 IOC 容器和 SpringMVC 的 IOC 容器扫描的包有重合的部分, 就会导致有的 bean 会被创建 2 次.

解决:

	使 Spring 的 IOC 容器扫描的包和 SpringMVC 的 IOC 容器扫描的包没有重合的部分. 
	使用 exclude-filter 和 include-filter 子节点来规定只能扫描的注解

就相当于springmvc扫描控制器,spring扫描其他组件

<!-- springmvc.xml配置文件 -->
<!-- springmvc.xml ,只有在context:include标签中会设置use-default-filters属性-->
	<context:component-scan base-package="com.atguigu.springmvc" 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>
<!-- spring.xml配置文件 -->
	<context:component-scan base-package="com.atguigu.springmvc">
	<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>
<!-- 配置数据源, 整合其他框架, 事务等. -->

父子容器的概念—SpringIOC 容器和 SpringMVC IOC 容器的关系

spring源码有个默认行为,如果有两个容器同时存在的时候spring作为父容器,springmvc是作为子容器的

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值