hibernate 保存不重复数据
参考文章
[url]
http://biancheng.dnbcw.info/java/71552.html[/url]
@SuppressWarnings("unchecked")
public DeviceInfo getDIByImei(String imei){
ArrayList<DeviceInfo> list = (ArrayList<DeviceInfo>)
s.createQuery("from DeviceInfo where imei = '"+imei+"'").list();
DeviceInfo result = null;
if (list.size()>0) {
result = list.get(0);
}
return result;
}
public void saveOrUpdate(DeviceInfo di){
DeviceInfo getDi = getDIByImei(di.getImei());
if(getDi==null){
DaoFactory.getDiDao().save(di);
}
} 相关推荐
yangkang 2020-11-09
lbyd0 2020-11-17
KANSYOUKYOU 2020-11-16
wushengyong 2020-10-28
腾讯soso团队 2020-11-06
Apsaravod 2020-11-05
PeterChangyb 2020-11-05
gyunwh 2020-11-02