SpringMVC_27_需要進行Spring 整合SpringMVC嗎?和整合值得注意的地方
阿新 • • 發佈:2019-01-10
->需要進行Spring 整合SpringMVC嗎?
->還是否需要再加入Spring的IOC容器?
->是否需要在web.xml檔案配置啟動Spring IOC容器的 ContextLoaderListener?
1.需要
通常情況下,類似於資料來源,事務,整合其他框架都是放在Spring的配置檔案中(而不是放在SpringMVC)實際上放入Spring配置檔案對應的IOC容器中的還有Service和Dao.
2.不需要
都放在SpringMVC的配置檔案中。也可以分多個Spring的配置檔案,然後使用import
tips: 1.SpringMVC的IOC容器中的bean可以來引用SpringIOC容器中的bean. 2.反過來呢?則不行。SpringIOC容器中的bean卻不能來引用SpringMVC IOC容器中的bean!
問題:
若Spring的IOC容器和SpringMVC的IOC容器掃描的包有重合的部分,就會導致有的bean會被建立2次。
解決:
1.使Spring的IOC容器掃描的包和SpringMVC的IOC容器掃描的包沒有重合的部分。
2.使用exclude-filter和include-filter 子節點來規定只能掃描的註解
如
springmvc.xml 只包含include
<context:component-scan base-package="com.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的配置檔案 bean.xml 不包含exclude
<context: componenet-scan base-package="com.springmvc">
<context:exclude-filter type="annotation"
expression="org.springframework.stereotype.Controller"/>
<context:exclude-filter type="annotation"
expression="org.springframework.web.bind.annotation.ControllerAdvice"/>
</context:componenet-scan>