我有两个实体,User和Annotations,我想将Annotations表上的查询的一组结果添加到Users实体中的瞬态变量。
实体:
用户
@Entity
public class Users {
@Id
@GeneratedValue
@Column(name="user_id")
private Long userId;
@Column(name="username", unique=true, nullable=false)
private String username;
@Transient
private Set<Annotation> annotations;
.....
注解
@Entity
@Table(name="Annotation")
public class Annotation {
@Id
@GeneratedValue
@Column(name="anno_id")
private Long annoId;
@Column(name="user_id", nullable=false)
private Long userId;
@Enumerated(EnumType.STRING)
@Column(name="access_control", nullable=false)
private Access accessControl;
@Column(name="group_id", nullable=true)
private Long groupId;
.....
所以我希望Set<Annotation> annotations
变量保存Annotations表上的查询结果。这不能简单地是一对多映射,因为我必须以特定方式限制结果。实际上,查询是这样的:
SELECT anno_id, a.user_id, timestamp, is_redacted, access_control, a.group_id, vocabulary_id, key_, value, target_type, target_id, root_type, root_id FROM Annotation AS a
LEFT JOIN group_membership g ON g.user_id = ?#{ principal?.getId() }
WHERE a.user_id = :id
AND (a.access_control='PUBLIC'
OR (a.access_control='GROUP' AND a.group_id = g.group_id
OR (a.access_control='PRIVATE' AND g.user_id = a.user_id))
GROUP BY a.anno_id
我认为这可以通过SQLResultSetMapping实现,但是,似乎结果总是映射到另一个不同的实体。是否可以将集合提取为集合并以我想要的方式存储它?
答案 0 :(得分:1)
您不能在此方案中使用SQLResultSetMapping,因为结果将仅映射为不同的实体。您可以做的是作为本机查询执行,然后将结果作为对象数组列表。然后,您可以构建所需的对象。
highesthelper