hibernate detached分离查询 与 抓取策略注意事项
Posted 生如夏花般寂美
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hibernate detached分离查询 与 抓取策略注意事项相关的知识,希望对你有一定的参考价值。
1.detached在抓取策略为 jion显式左外连接查询情况下 会产生笛卡儿积现象
DetachedCriteria dc = DetachedCriteria.forClass(Topic.class); dc.add(Restrictions.like("title", "%%")); Criteria criteria = dc.getExecutableCriteria(session); criteria.setFirstResult((currentpage - 1) * pagesize); criteria.setMaxResults(pagesize); List<Topic> list = criteria.list();
以上查询在join下产生的结果为
出现了笛卡儿积现象,所以在使用分离查询 分页的时候如果lazy为false 应尽量使用subselect或select抓取策略
详细Hibernate的检索方式、抓取策略以及利用二级缓存进行优化、解决数据库事务并发问题:http://blog.csdn.net/u013087513/article/details/69371833?utm_source=tuicool&utm_medium=referral
以上是关于hibernate detached分离查询 与 抓取策略注意事项的主要内容,如果未能解决你的问题,请参考以下文章
linux C++ std::thread::detach()函数(线程分离)