当前位置: 代码迷 >> J2EE >> 关于hibernateTemplate的错误处理
  详细解决方案

关于hibernateTemplate的错误处理

热度:72   发布时间:2016-04-22 03:01:37.0
关于hibernateTemplate的异常处理?
菜鸟求教! 
  请问,在项目中有DAO层和service层。通过spring在service层中配置事务管理。在DAO层中使用hibernateTemplate对数据库做相关操作,service层中调用DAO层的方法,如果我在service的方法中写try catch,spring还会对事务进行管理吗?

------解决方案--------------------
try catch后你有没有抛出,如果没有,肯定事务不会回滚的。
------解决方案--------------------
还是直接上代码吧
Java code
public void saveTicr(TInfCardRecord ticr) throws ServiceException {        // TODO Auto-generated method stub        String str = ticr.getTicrId();        boolean b = str == null || "".equals(str);        try {            if(b){                ticr.setTicrId(Tools.getRandom());                ticr.setTicrDate(new Date());            }            this.infCardRecordDao.saveTicr(ticr);        } catch (Exception e) {            // TODO: handle exception            if(b){                throw new ServiceException("save ticr fail");            }else{                throw new ServiceException("update ticr fail");            }        }    }
  相关解决方案