I have two entities, Movie and Genre, with a many to many relationship from genre to movie. Genre being the “parent” of the relationship. This generates three tables: genre, movie and genre_movie @Entity public class Genre { @Id @GeneratedValue(strategy = AUTO) private Long id; Read More