Spring Boot JPA 1:多(コレクション) Spring Boot 1.5.6のJPAの1:多(ElementCollection)について。 概要 あるエンティティーTで別のエンティティーDを複数保持する(T:D=1:n、すなわち1:多)場合、JPAではエンティティーTの中でDのコレクションを持つ形で書ける。 import javax.persistence.ElementCollection; import javax.persistence.Entity; @Entity public TEntity { ~ @ElementCollection private List<DEntity> dList; ~ } フィールドにコレクション書き、@ElementCollectionアノテーションを付ける。 (→@OneToManyアノテーションを使用する方法) Entityだ