一聚教程网:一个值得你收藏的教程网站

热门教程

jsp 关键字:查询,事务,粒度

时间:2022-07-02 17:23:25 编辑:袖梨 来源:一聚教程网

/**
  * 该方法上加事务,传播途径为required
  * @param params
  * @return
  */
 public List getObject(Map params)  {
  //先从memcached中取得数据
  List o1 = memcachedClient.getFromCache(params);
  
  
  if (o1 == null) {
   ol = ObjectDao.getfromDB(params);
   memcachedClient.putToCache(params, o1);
  }
  
  return o1;
 }