Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发一个Java EE应用程序。在我的对象结构中,我有Person一个具有一组对象的Address对象。在我的一个查询中,我应该检索一个只有每个人的第一个地址的人员列表hibernate。
Java EE
Person
Address
hibernate
我认为在 JPA 中是不可能的,或者作为一个人的 ORM 将他的所有地址行都映射到它。因此,您必须手动完成,遍历 Person 对象并获取地址列表并删除除第一个之外的所有元素。
虽然不是一个好的或有效的方式。