用于单向 OneToMany 的 JPQL

JPQL for a Unidirectional OneToMany

我的 Spring 存储库接口方法需要一个 jpql 查询,以检索给定学期的所有帖子。

@LazyCollection(LazyCollectionOption.FALSE)
@OneToMany(cascade = CascadeType.MERGE)
@JoinTable
(
 name = "semester_post",
 joinColumns = {@JoinColumn(name = "semester_id", referencedColumnName = "id")},
 inverseJoinColumns = {@JoinColumn(name = "post_id", referencedColumnName = "id", unique = true)}
)
private List<PostEntity<?>> posts = new ArrayList<>();

PostEntity 没有对 Semester 的引用,我不想添加一个,因为我打算将此 PostEntity 用于 Semester 以外的其他用途。也许我会有另一个 class(比如说 Group),它也将有一个 OneToMany of PostEntity(就像学期中的那个)

那么,如何将此 SQL 查询编写为 JPQL 查询?

select * from posts join semester_post on semester_post.post_id = posts.id where semester_post.semester_id = 1;

我的存储库

public interface PostRepository extends JpaRepository<PostEntity, Long> {

String QUERY = "SELECT p FROM PostEntity p ... where semester = :semesterId";

@Query(MY_QUERY)
public List<PostEntity> findBySemesterOrderByModifiedDateDesc(@Param("semesterId") Long semesterId);

将为您提供所需结果的查询是:

SELECT p FROM SemesterEntity s JOIN s.posts p WHERE s.id = :semesterId

此查询使用 JOIN 运算符跨 posts 关系将 SemesterEntity 连接到 PostEntity。通过将两个实体连接在一起,此查询 returns 与相关 SemesterEntity.

关联的所有 PostEntity 个实例