码迷,mamicode.com
首页 > 编程语言 > 详细

解决 spring mvc 3.+ 结合 hibernate3.+ 使用<tx:annotation-driven>声明式事务无法提交的问题

时间:2016-12-19 19:03:02      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:highlight   ase   调试   auto   ref   string   key   net   images   

  spring mvc使用注解方式;service使用@service注解 事务使用@Transactional

     事务配置使用

Java代码  
  1. <tx:annotation-driven transaction-manager="transactionManager" proxy-target-class="true" />  

     在插入或更新数据时,无报错,但数据库中无结果,而查询正常。疑为事务未提交。

 

方式用来扫描该包以及其子包下的@Controller注解的类,纳入spring管理,而同时spring 容器也需要使用这种方式扫描包含@Service、@Components、@Required、@Autowired等注解用来管理bean和完成DI。

   

Java代码 技术分享 技术分享技术分享
  1. <context:component-scan base-package="com.yx.*" />  
 
  1. <context:component-scan base-package="com.yx.*" />  

 出现在spring mvc的配置文件中时,web 容器在扫描包含@Service或@Components的类并包含@Transaction是,此时@Transaction并为完成,导致事务未被注册。

4、问题解决

分两部分扫描:

spring-mvc.xml中扫描controller

application.xml中扫描其他的

 

 

SpringMVC.xml配置文件--> 的只扫描controller组件 注意使用 use-default-filters="false" 
<context:component-scan base-package="com.yx.*" use-default-filters="false" > 
<context:include-filter expression="org.springframework.stereotype.Controller" type="annotation"/> 
</context:component-scan> 

ApplicationContext.xml配置文件-->扫描除controller外的所有组件 
<context:component-scan base-package="com.yx.*" > 
<context:exclude-filter expression="org.springframework.stereotype.Controller" type="annotation"/> 
</context:component-scan>

 


经调试代码发现: 

1、如果不设置use-default-filters="false",则Spring会扫描并优先注册默认的bean(当然包括标记为@Service的bean),这样,标记为@Transactional的service由于transaction manager尚未注册而未能生效,导致事务管理失效。 
原理是:标记为@Transactional的service会wrap为经过transactional proxied(不管是CGLIB based或是JDK based)的bean,而不再是纯的service; 

解决 spring mvc 3.+ 结合 hibernate3.+ 使用<tx:annotation-driven>声明式事务无法提交的问题

标签:highlight   ase   调试   auto   ref   string   key   net   images   

原文地址:http://www.cnblogs.com/LvLoveYuForever/p/6198467.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!