接口 CommonDao(公共Dao提供增删改查方法 saveOrUpdate)
作者:互联网
void saveOrUpdate(java.lang.Object entity) throws java.lang.Exception
保存或更新po对象.
参数:
entity
- po对象实例
抛出:
java.lang.Exception
public void saveOrUpdate(Object entity)throws Exception{
sessionFactory.getCurrentSession().saveOrUpdate(entity);
}
标签:lang,Exception,saveOrUpdate,java,Dao,entity,CommonDao,po 来源: https://blog.csdn.net/gongjian0321/article/details/89003620