springMVC-12-整合spring和springmvc
问题1:
好像我们只需要使用springmvc的配置文件作为IOC容器就可以了
--> 需要进行Spring 整合SpringMVC吗?
----> 还是否需要再加入Spring的IOC容器?
-------> 是否需要在web.xml文件配置启动Spring IOC容器的 ContextLoaderListener?
1、需要
通常情况下,类似于数据源,事务,整合其他框架都是放在Spring的配置文件中(而不是放在SpringMVC)实际上放入Spring配置文件对应的IOC容器中的还有Service和Dao.
2、不需要
都放在SpringMVC的配置文件中。也可以分多个Spring的配置文件,然后使用import
所以我们选择了需要这个整合
问题2:
若Spring的IOC容器和SpringMVC的IOC容器扫描的包有重合的部分,就会导致有的bean会被创建2次。
解决:
1.使Spring的IOC容器扫描的包和SpringMVC的IOC容器扫描的包没有重合的部分。
2.使用exclude-filter和include-filter 子节点来规定只能扫描的注解
示例
springIOC容器
<!--除去控制器注解和错误解析器注解不扫描-->
<context:component-scan base-package="com.wang.*">
<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>
springmvcIOC容器
<!--只需要扫描控制器注解和错误解析注解-->
<context:component-scan base-package="com.wang.*" 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>
问题3:
这两个IOC容器是可以互相调用bean的吗?
springmvc的IOC容器中的bean可以调用springIOC容器中的bean
但是IOC容器中的bean是不能调用springmvcIOC容器中的bean的
可以从继承来理解(可以把springmvc作为一个业务层是springIOC的儿子
)
局部可以调用全局,但全局不能调用局部