Spring和SpringMVC父子容器关系初窥(小结)
一、背景
最近由于项目的包扫描出现了问题,在解决问题的过程中,偶然发现了spring和springmvc是有父子容器关系的,而且正是因为这个才往往会出现包扫描的问题,我们在此来分析和理解spring和springmvc的父子容器关系并且给出spring和springmvc配置文件中包扫描的官方推荐方式。
二、概念理解和知识铺垫
在spring整体框架的核心概念中,容器是核心思想,就是用来管理bean的整个生命周期的,而在一个项目中,容器不一定只有一个,spring中可以包括多个容器,而且容器有上下层关系,目前最常见的一种场景就是在一个项目中引入spring和springmvc这两个框架,那么它其实就是两个容器,spring是父容器,springmvc是其子容器,并且在spring父容器中注册的bean对于springmvc容器中是可见的,而在springmvc容器中注册的bean对于spring父容器中是不可见的,也就是子容器可以看见父容器中的注册的bean,反之就不行。
我们可以使用统一的如下注解配置来对bean进行批量注册,而不需要再给每个bean单独使用xml的方式进行配置。
<context:component-scan base-package="com.hafiz.www" />
从spring提供的参考手册中我们得知该配置的功能是扫描配置的base-package包下的所有使用了@component注解的类,并且将它们自动注册到容器中,同时也扫描@controller,@service,@respository这三个注解,因为他们是继承自@component。
在项目中我们经常见到还有如下这个配置,其实有了上面的配置,这个是可以省略掉的,因为上面的配置会默认打开以下配置。以下配置会默认声明了@required、@autowired、 @postconstruct、@persistencecontext、@resource、@predestroy等注解。
<context:annotation-config/>
另外,还有一个和springmvc相关如下配置,经过验证,这个是springmvc必须要配置的,因为它声明了@requestmapping、@requestbody、@responsebody等。并且,该配置默认加载很多的参数绑定方法,比如json转换解析器等。
<mvc:annotation-driven />
而上面这句配置spring3.1之前的版本和以下配置方式等价
<!--配置注解控制器映射器,它是springmvc中用来将request请求url到映射到具体controller--> <bean class="org.springframework.web.servlet.mvc.annotation.defaultannotationhandlermapping"/> <!--配置注解控制器映射器,它是springmvc中用来将具体请求映射到具体方法--> <bean class="org.springframework.web.servlet.mvc.annotation.annotationmethodhandleradapter"/>
spring3.1之后的版本和以下配置方式等价
<!--配置注解控制器映射器,它是springmvc中用来将request请求url到映射到具体controller--> <bean class="org.springframework.web.servlet.mvc.method.annotation.requestmappinghandlermapping"/> <!--配置注解控制器映射器,它是springmvc中用来将具体请求映射到具体方法--> <bean class="org.springframework.web.servlet.mvc.method.annotation.requestmappinghandleradapter"/>
三、具体场景分析
下面让我们来详细扒一扒spring与springmvc的容器冲突的原因到底在那里?
我们共有spring和springmvc两个容器,它们的配置文件分别为applicationcontext.xml和applicationcontext-mvc.xml。
1.在applicationcontext.xml中配置了<context:component-scan base-package=“com.hafiz.www" />,负责所有需要注册的bean的扫描和注册工作。
2.在applicationcontext-mvc.xml中配置<mvc:annotation-driven />,负责springmvc相关注解的使用。
3.启动项目我们发现springmvc无法进行跳转,将log的日志打印级别设置为debug进行调试,发现springmvc容器中的请求好像没有映射到具体controller中。
4.在applicationcontext-mvc.xml中配置<context:component-scan base-package=“com.hafiz.www" />,重启后,验证成功,springmvc跳转有效。
下面我们来查看具体原因,翻看源码,从springmvc的dispatcherservlet开始往下找,我们发现springmvc初始化时,会寻找springmvc容器中的所有使用了@controller注解的bean,来确定其是否是一个handler。1,2两步的配置使得当前springmvc容器中并没有注册带有@controller注解的bean,而是把所有带有@controller注解的bean都注册在spring这个父容器中了,所以springmvc找不到处理器,不能进行跳转。核心源码如下:
protected void inithandlermethods() { if (logger.isdebugenabled()) { logger.debug("looking for request mappings in application context: " + getapplicationcontext()); } string[] beannames = (this.detecthandlermethodsinancestorcontexts ? beanfactoryutils.beannamesfortypeincludingancestors(getapplicationcontext(), object.class) : getapplicationcontext().getbeannamesfortype(object.class)); for (string beanname : beannames) { if (ishandler(getapplicationcontext().gettype(beanname))){ detecthandlermethods(beanname); } } handlermethodsinitialized(gethandlermethods()); }
在方法ishandler中会判断当前bean的注解是否是controller,源码如下:
protected boolean ishandler(class<?> beantype) { return annotationutils.findannotation(beantype, controller.class) != null; }
而在第4步配置中,springmvc容器中也注册了所有带有@controller注解的bean,故springmvc能找到处理器进行处理,从而正常跳转。
我们找到了出现不能正确跳转的原因,那么它的解决办法是什么呢?
我们注意到在inithandlermethods()方法中,detecthandlermethodsinancestorcontexts这个switch,它主要控制获取哪些容器中的bean以及是否包括父容器,默认是不包括的。所以解决办法就是在springmvc的配置文件中配置handlermapping的detecthandlermethodsinancestorcontexts属性为true即可(这里需要根据具体项目看使用的是哪种handlermapping),让它检测父容器的bean。如下:
<bean class="org.springframework.web.servlet.mvc.method.annotation.requestmappinghandlermapping"> <property name="detecthandlermethodsinancestorcontexts"> <value>true</value> </property> </bean>
但在实际工程中会包括很多配置,我们按照官方推荐根据不同的业务模块来划分不同容器中注册不同类型的bean:spring父容器负责所有其他非@controller注解的bean的注册,而springmvc只负责@controller注解的bean的注册,使得他们各负其责、明确边界。配置方式如下
1.在applicationcontext.xml中配置:
<!-- spring容器中注册非@controller注解的bean --> <context:component-scan base-package="com.hafiz.www"> <context:exclude-filter type="annotation" expression="org.springframework.stereotype.controller"/> </context:component-scan>
2.applicationcontext-mvc.xml中配置
<!-- springmvc容器中只注册带有@controller注解的bean --> <context:component-scan base-package="com.hafiz.www" use-default-filters="false"> <context:include-filter type="annotation" expression="org.springframework.stereotype.controller" /> </context:component-scan>
三、总结
这样我们在清楚了spring和springmvc的父子容器关系、以及扫描注册的原理以后,根据官方建议我们就可以很好把不同类型的bean分配到不同的容器中进行管理。再出现bean找不到或者springmvc不能跳转以及事务的配置失效的问题,我们就可以很快的定位以及解决问题了。很开心,有木有~
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。