Error reading annotations with composite key in EBean
问题 Following this link I would like to use OneToMany instead ManyToMany annotation, having middle class with composite key in it using Ebean. I have this error: java.lang.RuntimeException: Error reading annotations for models.SoftwareTagPk This is my SoftwareTagPk class: @Embeddable public class SoftwareTagPk implements Serializable { @ManyToOne private Tag tag; @ManyToOne private Software software; ... } And SoftwareTag class: @Entity public class SoftwareTag extends Model { @EmbeddedId private