Spring之 context:exclude-filter 与 context:include-filter

1.在Spring的applicationContext.xml(主容器)中,将Controller(控制器)的注解打消掉
<context:component-scan base-package="com">
             <context:exclude-filter type="annotation" experession="org.springframework.stereotype.Controller" />
</context:component-scan>


2.在SpringMVC配置文件中将Service注解给去掉
<context:component-scan base-package="com">
  <context:include-filter type="annotation" expression="org.springframework.stereotype.Controller" />
  <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Service" />
  </context:component-scan> 

猜你喜欢

转载自chenlei-bean.iteye.com/blog/2029697