Vì bạn đã có đối tượng mục nhập blog, tại sao không sử dụng một vòng lặp Java đơn giản để lọc nó?
@Entity
class BlogEntry {
@Embedded
List<BlogComment> comments
public BlogComment findCommentByAuthorId(String authorId) {
if (null == authorId) return null;
for (BlogComment comment: blogEntry.comments) {
if (authorId.equals(comment.authorId) return comment;
}
return null;
}
}