jpa query.getResultList() 卡住,没有错误

发布于 2024-12-09 14:05:36 字数 461 浏览 0 评论 0原文

我有一个奇怪的情况,我编写了一个简单的代码来查询 JPA2.0 中的数据库,

一切似乎都很好,但是当代码命中 query.getResultList(); 时

它只是卡住并且没有响应,然后 glassfish 服务器获得大约 20% 的 CPU

,然后什么也没有发生,也不会生成任何错误或日志。

怎么了?

我正在使用 glassfish、EclipseLink、NetBeans

这是我的代码:

public List<?> getData(EntityManager em,Class entityClass){
Query query=em.createQuery("select entity from tblPromotions entity");
return query.getResultList();
}

提前致谢

I have a strange case, I have written a simple code to query DB in JPA2.0

everything seems good, but when the code hits query.getResultList();

it just gets stuck and does not respond, then glassfish server gets about 20% of CPU

and then nothing happens, also it does not generate any error or log.

what is wrong?

I am using glassfish, EclipseLink, NetBeans

this is my code:

public List<?> getData(EntityManager em,Class entityClass){
Query query=em.createQuery("select entity from tblPromotions entity");
return query.getResultList();
}

thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

紫竹語嫣☆ 2024-12-16 14:05:36

尝试调试一下,是哪里卡住了? (kill或ctrl c打印堆栈跟踪,或使用调试器)

同时打开最好的日志记录。

它可能是数据库锁,因为它是读取,所以您必须使用某种序列化事务隔离,这可能是一个坏主意。

表中的艾米对象有多丰富,可能需要很长时间。

Try debugging it, where is it stuck? (kill or ctrl c to print the stack trace, or use a debugger)

Also turn logging on finest.

It could be a database lock, since it is a read, you must be using some sort of serialized transaction isolation, which is probably a bad idea.

How amy objects are in the table, it could just be taking a very long time.

∞觅青森が 2024-12-16 14:05:36

就我而言,在调试到 Hibernate 后,我发现查询返回了太多行,无法处理。
因此,可以通过为最大结果设置一些值来解决:

query.setMaxResults(100);

顺便说一句:总是在这种情况下尝试调试框架,它可以给你答案:>

In My case After debugging into Hibernate i found that the query just returned too many rows for it to handle.
so it is solved by setting some value for Max Results:

query.setMaxResults(100);

btw: always in such scenarios try debugging into the framework , and it can give you the answer :>

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文