srping mvc 集成CXF 导致类初始化两遍

cxf依赖于spring的ContextLoaderListener,而spring mvc 则依赖于DispatcherServlet。

初始化DispatcherServlet的时候会依赖初始化一个spring 容器,此容器为spring全局容器WebApplicationContext的子容器,如果调用相同的配置文件初始化将导致所有类初始化两次,造成不确定的错误。

spring的字容器可以访问父容器内的对象,既然如此,可以让全局容器加载除Controller层以外的类,而让spring mvc容器加载Controller层的类,来解除此问题。

具体配置实现:

全局spring包扫描配置:

<context:component-scan base-package="com.blackbread">
        <!-- 不加载org.springframework.stereotype.Controller类型注解 -->
        <context:exclude-filter type="annotation"
            expression="org.springframework.stereotype.Controller" />
    </context:component-scan>

spring mvc 包扫描配置:

<context:component-scan base-package="com.blackbread"
        use-default-filters="false">
        <!-- 只载org.springframework.stereotype.Controller类型注解 -->
        <context:include-filter type="annotation"
            expression="org.springframework.stereotype.Controller" />
    </context:component-scan>

在web.xml中分别加载不同的配置文件,即可解决所有类加载两遍问题。

 

srping mvc 集成CXF 导致类初始化两遍,古老的榕树,5-wow.com

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。