0
這是我第一次嘗試這個,但我發現了以下錯誤:使用的ScrollableResults和休眠
The result set is closed
試圖使用。
@Override
public void associarTodosConteudos(LoteTransferenciaTO lotetransferencia, UsuarioDepartamentoTO udLogado, Long idDepartamento, Long idUsuario) {
// Lista os objetos controlados fluxo
ScrollableResults objetos = this.persistencia.listarConteudosSR(idDepartamento, idUsuario);
while (objetos.next()) {
ContentTO content = (ContentTO) objetos.get(0);
this.negocioVinculoLote.adicionarNoLoteTransferencia(lotetransferencia, content, udLogado);
}
}
嗨,這是什麼persistencia對象的類型? 我認爲問題在那裏... – Eldius