快速业务通道

Spring事务管理高级应用难点剖析: 第2部分 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-13
tereotype.Service; import  org.springframework.orm.hibernate3.HibernateTemplate; import  org.apache.commons.dbcp.BasicDataSource; import user.User; @Service("userService") public class  UserService extends BaseService {   @Autowired   private  HibernateTemplate hibernateTemplate;   @Autowired   private  ScoreService scoreService;   public void logon(String userName)  {     System.out.println("logon method...");      updateLastLogonTime(userName); //①使用Hibernate数据访问技术      scoreService.addScore(userName, 20); //②使用Spring JDBC数据访问技术   }   public void updateLastLogonTime(String userName) {      System.out.println("updateLastLogonTime...");     User user =  hibernateTemplate.get(User.class,userName);     user.setLastLogonTime (System.currentTimeMillis());     hibernateTemplate.flush(); //③请看下文 的分析    } }

在①处,使用 Hibernate 操作数据,而在②处调 用 ScoreService#addScore(),该方法内部使用 Spring JDBC 操作数据。

在 ③处,我 们显式调用了 flush() 方法,将 Session 中的缓存同步到数据库中,这个操作将即时向数据 库发送一条更新记录的 SQL 语句。之所以要在此显式执行 flush() 方法,原因是:默认情况 下,Hibernate 要在事务提交时才将数据的更改同步到数据库中,而事务提交发生在 logon() 方法返回前。如果所有针对数据库的更改都使用 Hibernate,这种数据同步延迟的机制不会产 生任何问题。但是,我们在 logon() 方法中同时采用了 Hibernate 和 Spring JDBC 混合数据 访问技术。Spring JDBC 无法自动感知 Hibernate 一级缓存,所以如果不及时调用 flush() 方法将数据更改同步到数据库,则②处通过 Spring JDBC 进行数据更改的结果将被 Hibernate 一级缓存中的更改覆盖掉,因为,一级缓存在 logon() 方法返回前才同步到数据库!

ScoreService 使用 Spring JDBC 数据访问技术,其代码如下:

清单 3.ScoreService.java:使用 Spring JDBC 数据访问技术

package  user.mixdao; import  org.springframework.beans.factory.annotation.Autowired; import  org.springframework.jdbc.core.JdbcTemplate; import  org.springframework.stereotype.Service; import  org.apache.commons.dbcp.BasicDataSource; @Service("scoreUserService") public class ScoreService extends BaseService{   @Autowired    private JdbcTemplate jdbcTemplate;   public void addScore(String  userName, int toAdd) {     System.out.println("addScore...");      String sql = "UPDATE t_user u SET u.score = u.score + ? WHERE  user_name =?";     jdbcTemplate.update(sql, toAdd, userName);      //① 查看此处数据库激活的连接数     BasicDataSource basicDataSource  = (BasicDataSource) jdbcTemplate.getDataSource();      System.out.println("激活连接数量:"+basicDataSource.getNumActive());   } }

Spring事务管理高级应用难点剖析: 第2部分(3)

时间:2012-04-26 IBM 陈雄华

Spring 关键的配置文件代码如下所示:

清单 4. applicationContext.xml 事务配置代码部分

<!-- 使用Hibernate事务管理 器 --> <bean id="hiberManager"    class=&

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号