hibernate2 使用记录

来源:互联网 发布:苗族舞蹈服装淘宝 编辑:程序博客网 时间:2024/06/05 06:33

本人不太喜欢hibernate,遇见更低的版本自然是不爽,不爽归不爽,工作中有用到它,自然得和它打交道了,此文记录使用过程中遇见的问题
/****************************query接口出现N+1查询问题 begin******************************/
此处涉及的N+1问题并不是两表关联导致,而是单表查询是出现的例如select c from Test c 会执行select id from test,然后执行N条select * from test where id=?
查看iterate api 说明如下
Return the query results as an Iterator. If the query contains multiple results pre row, the results are returned in an instance ofObject[].
Entities returned as results are initialized on demand. The first SQL query returns identifiers only.
改用list 应该可以
/****************************query接口出现N+1查询问题 end******************************/

/****************************hibernate2查询版本信息 begin******************************/
net.sf.hibernate.cfg.Environment.VERSION
/****************************hibernate2查询版本信息 end******************************/

原创粉丝点击