我正在开发一个Spring + Hibernate应用程序,一切都运行得很好。制作方法我发现了一个我无法解释的奇怪行为,所以我会告诉你我得到了什么,也许我们会找到解决方案。
此方法检索解析网页的足球运动员列表,并尝试查找数据库中是否已有一个同名的球员;如果我已经拥有它,我设置一些参数并更新该对象。如果我没有这个名字的玩家,我想插入它。我显然无法使用saveOrUpdate
方法,因为我的解析对象没有id,因为我没有从db中检索它们。
这是生成错误的代码段(它在服务层中,然后声明为Transactional
):
List<Calciatore> calciatoriAggiornati = PopolaDbCalciatori.getListaCalciatori(imagesPath);
for(Calciatore calciatore: calciatoriAggiornati){
Calciatore current = calciatoreDao.getCalciatoreByNome(calciatore.getNome());
if( current != null){
current.setAttivo(true);
current.setRuolo(calciatore.getRuolo());
current.setUrlFigurina(calciatore.getUrlFigurina());
current.setSquadraReale(calciatore.getSquadraReale());
calciatoreDao.update(current);
}
else{
calciatore.setAttivo(true);
calciatoreDao.insert(calciatore);
}
}
return true;
}
getCalciatoreByName方法如下(如果单独使用它会起作用):
public Calciatore getCalciatoreByNome(String nomeCalciatore) {
List<Calciatore> calciatori = getSession().createCriteria(Calciatore.class)
.add(Restrictions.eq("nome",nomeCalciatore)).list();
return calciatori.size() == 0? null : calciatori.get(0);
}
类insert
继承的BaseDaoImpl
方法在独立使用时也有效,如下所示:
public Boolean insert(T obj) throws DataAccessException {
getSession().save(obj);
return true;
}
结果很奇怪:列表的第一个对象传递方法getCalciatoreByNome
没有问题;因为我在数据库上没有实例,所以流程转到插入。第一轮for
结束后,这是控制台:
Hibernate:
select
this_.kid as kid1_0_3_,
this_.attivo as attivo2_0_3_,
this_.dataDiNascita as dataDiNa3_0_3_,
this_.nome as nome4_0_3_,
this_.ruolo as ruolo5_0_3_,
this_.squadraCorrente_kid as squadraC9_0_3_,
this_.squadraReale as squadraR6_0_3_,
this_.urlFigurina as urlFigur7_0_3_,
this_.version as version8_0_3_,
squadrafan2_.kid as kid1_7_0_,
squadrafan2_.attiva as attiva2_7_0_,
squadrafan2_.nome as nome3_7_0_,
squadrafan2_.utenteAssociato_kid as utenteAs5_7_0_,
squadrafan2_.version as version4_7_0_,
utente3_.kid as kid1_10_1_,
utente3_.attivo as attivo2_10_1_,
utente3_.hashPwd as hashPwd3_10_1_,
utente3_.ruolo_kid as ruolo_ki6_10_1_,
utente3_.username as username4_10_1_,
utente3_.version as version5_10_1_,
ruolo4_.kid as kid1_5_2_,
ruolo4_.nome as nome2_5_2_,
ruolo4_.version as version3_5_2_
from
Calciatore this_
left outer join
SquadraFantacalcio squadrafan2_
on this_.squadraCorrente_kid=squadrafan2_.kid
left outer join
Utente utente3_
on squadrafan2_.utenteAssociato_kid=utente3_.kid
left outer join
Ruolo ruolo4_
on utente3_.ruolo_kid=ruolo4_.kid
where
this_.nome=?
Hibernate:
call next value for SEQ_CALCIATORE
正如您所看到的,没有引发异常,但行为已经受到影响,因为没有真正执行插入!最后一行日志只显示序列生成器!
在for
周期的第二轮,当流程接近getCalciatoreByNome
方法时,这是控制台日志:
Hibernate:
insert
into
Calciatore
(attivo, dataDiNascita, nome, ruolo, squadraCorrente_kid, squadraReale, urlFigurina, version, kid)
values
(?, ?, ?, ?, ?, ?, ?, ?, ?)
24/06/2015 09:03:27 - INFO - (AbstractBatchImpl.java:208) - HHH000010: On release of batch it still contained JDBC statements
24/06/2015 09:03:27 - WARN - (SqlExceptionHelper.java:144) - SQL Error: -5563, SQLState: 42563
24/06/2015 09:03:27 - ERROR - (SqlExceptionHelper.java:146) - incompatible data type in operation
24/06/2015 09:03:39 - DEBUG - (AbstractPlatformTransactionManager.java:847) - Initiating transaction rollback
哇,太奇怪了。当我尝试第二次执行select方法时,Hibernate会尝试使insert
生成我无法在任何地方找到的错误,并启动rollback \ exception生成。
我尽可能多地尝试调试,但我无法理解正在发生的事情,因为当我独立执行这些操作时,一切似乎都正常。
有什么建议吗?
答案 0 :(得分:1)
使用AUTO flushing时,会在以下情况下刷新当前待处理的更改:
当您发出org.apache.myfaces.EXPRESSION_FACTORY
时,Hibernate只在行动队列中添加insert
,但delays the INSERT until flush time。
您在第二个迭代周期中看到插入执行的原因是因为select查询触发了刷新。