I have two tables which are in 1:n relationship:
musician
{
id;
...
musician_status_id;
...
}
musician_status{
id;
name;
...
}
They are mapped in Hibernate:
@ManyToOne(fetch = FetchType.LAZY)
@JoinColumn(name = "musician_status_id", nullable = false)
public MusicianStatus getMusicianStatus() {
return this.musicianStatus;
}
Now my DB model changes to a n:m one.
musician
{
id;
...
...
}
musician_has_status{
musician_id;
status_id;
organisation_id;
...
}
musician_status{
id;
name;
...
}
I have a lot of queries and code which relay on the old mapping. Therefore i want that the Hibernate getter only returns a single musician_status depending on the organisation_id. My organisation_id is stored in static variable (login data).
I thought of a view and a interceptor to retrieve only the musician_status for a certain organisation_id. I don't really know how to achieve this in Hibernate...
Thank's in advance.
Added: New DB Mapping would look like this:
@OneToMany(fetch = FetchType.LAZY, mappedBy = "musician")
public Set<MusikerHasMusikerStat> getMusicianHasMusicianStatus() {
return this.musikerHasMusicianStatus;
}
I want to change that to something like that:
@OneToMany(fetch = FetchType.LAZY, mappedBy = "musician")
@Add a Filter or something like that?: where musician_has_status.organisation_id=LoginDat.getOrganisationID()
public MusicianStatus getMusicianStatus() {
//or select the right status here?
return this.musicianStatus;
}