从结果集中填充 bean 对象
我面临着从结果集中填充 bean 对象的问题。
描述:Resultset 包含存储过程的结果,该存储过程是 3 个表 B
、BO
和 BOV
的连接。
我有 3 个 POJO 对应于表。表之间的关系是:B
可以有0个或多个BO
,BO
可以有0个或多个BOV
的。因此,在结果集中我总共有 162 条记录,其中包含 B
的重复项。
例如:
B BO BOV
1 1 1
1 1 2
1 2 1
2 1 1
等等。
实际上有 10 个不同的 B
。所以我只想要结果集中的 10 个 B,而不是 162 条记录。另外,II 应该能够获得相应的 BO
和 BOV
,例如 B=1
BO
的所有值和 BOV
的。
我该怎么做?这是纯java逻辑,不能改变存储过程的任何内容。只需处理结果集即可。
I am facing a problem regarding populating bean objects from the resultset.
Description:Resultset contains the result of a stored procedure which is join of 3 tables B
, BO
, and BOV
.
I have 3 POJO's corresponding to tables. The relation between tables is: B
can have 0 or more BO
's, BO
can have 0 or more BOV
's. So totally in resultset I have 162 records, which contain duplicates for B
.
For example:
B BO BOV
1 1 1
1 1 2
1 2 1
2 1 1
and so on.
Actually there are 10 distinct B
's. So II want only 10 B
's from the resultset not 162 records. Also II should be able to get corresponding BO
and BOV
's like for B=1
all values of BO
and BOV
's.
How can I do this? This is pure java logic and cannot change anything for the stored procedure. Just have to process the resultset.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这里有一个正在运行的结果集 Map 是一个可能的伪代码
[仅伪代码...不保证编译]
Have a running Map of the resultset here is a possible pseudocode
[pseudo code only... not guaranteed to compile]
更改查询以包含 GROUP BY 是最好的选择。
Changing the query to include a GROUP BY is much the best option.