jpa query.getResultList() 卡住,没有错误
我有一个奇怪的情况,我编写了一个简单的代码来查询 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试调试一下,是哪里卡住了? (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.
就我而言,在调试到 Hibernate 后,我发现查询返回了太多行,无法处理。
因此,可以通过为最大结果设置一些值来解决:
顺便说一句:总是在这种情况下尝试调试框架,它可以给你答案:>
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:
btw: always in such scenarios try debugging into the framework , and it can give you the answer :>