SpringMVC注解(annotation配置)事务不生效问题

在主容器中(applicationContext.xml)添加
<context:component-scan base-package="com" />


而在springMVC配置文件中use-default-filters它用来指示是否自动扫描带有@Component、@Repository、@Service和@Controller的类。默认为true,即默认扫描,如果想要过滤其中这四个注解中的一个,比如@Service,@Controller可以添加如下子标签

<context:component-scan base-package="com" use-default-filters="false">
  <context:include-filter type="annotation" expression="org.springframework.stereotype.Controller" />
  <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Service" />
  </context:component-scan>


因为spring的context是父子容器,所以会产生冲突,由ServletContextListener产生的是父容器,springMVC产生的是子容器,子容器Controller进行扫描装配时装配了@Service注解的实例,而该实例理应由父容器进行初始化以保证事务的增强处理,所以此时得到的将是原样的Service(没有经过事务加强处理,故而没有事务处理能力。

你可能感兴趣的:(spring,springMVC,事务失效)