0
は、私はこの1と同様の問題があります:休止状態-jpamodelgenを、スプリングブーツで(映画や俳優のためのテーブルを結合する)俳優、映画とmactors:Spring Data Jpa and Specification - how to work with ManyToOne and ManyToMany relations?春データJPAと仕様 - 多対多
を、私は3つのテーブルを持っています
@Entity
public class Actor {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private long id;
...
}
@Entity
public class Movie implements BaseId {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private long id;
....
}
Iは、2人の以上の俳優が一緒にされているそれらの映画を取得したいと思います。このクエリのようなもの:
select * from movie
join mactors on movie.id = mactors.movie
where mactors.actor = x and mactors.actor = y and ...;
public static Specification<Movie> findMoviesByActors(List<Long> actors) {
return (root, criteriaQuery, criteriaBuilder) -> {
...
return ...
};
}
私は次の何かを持っていません。
ご了承ください。 ありがとう