Tagged Questions
0
votes
1answer
71 views
can't access @OneToOne mapped entity
My data model:
public class Tour extends Model {
@Id
public Integer id;
@ManyToOne
public Sport sport;
@OneToOne(mappedBy="genericTour")
FootballTour footballTour;
...
2
votes
0answers
162 views
Play Framework 2.0 Access foreign key object from template
I have 2 Ebean models connected with ManyToOne connection.
@Entity
public class Interview extends Model {
@Id
Long id;
@ManyToOne(cascade = CascadeType.MERGE)
public User user;
....
}
...