Skip to content

Instantly share code, notes, and snippets.

@okihouse
okihouse / Like
Created July 22, 2016 05:06
Spring Data JPA - How to insert child entities with composite key?
@Entity
@Table(name = "like")
@Data
public class Like {
@EmbeddedId
private LikeKey likeKey;
@Column(name = "word")
private String word;