1
vote
2answers
897 views

Using Ebean/JPA in my Play application, how can I delete an object in a OneToOne relationship?

I have the following classes: import play.db.ebean.Model; import javax.persistence.*; @Entity public class A extends Model { @Id private int id; /* Other irrelevant properties */ ...
0
votes
1answer
171 views

How to save a HashSet in a ebean entity?

I want to put an extra set in an entity. But with Ebean seems to not handle it and always gives me null when I read it. @Entity public class MyData extends Model { @ElementCollection public ...