gpt4 book ai didi

java - 使用 ScrollableResults 和 hibernate

转载 作者:行者123 更新时间:2023-12-01 11:29:44 28 4
gpt4 key购买 nike

这是我第一次尝试这个,但我收到以下错误:

The result set is closed

尝试使用ScrollableResults时。

@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);
}
}

最佳答案

一旦退出此方法 this.persistencia.listarConteudosSR(idDepartamento, idUsuario);

ScrollableResults 就会关闭。

尝试迭代 this.persistencia.listarConteudosSR(idDepartamento, idUsuario); 方法中的 ScrollableResults 。它应该有效。

更多详情请参阅https://docs.jboss.org/hibernate/orm/3.3/reference/en/html/batch.html

关于java - 使用 ScrollableResults 和 hibernate,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30510173/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com