Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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;
}
share|improve this question

2 Answers

Map it as it really is in the database, and change the code of the getMusicianStatus method:

@OneToMany(...)
@JoinColumn(...)
public void getStatusesWithOrganization() {
    return this.statusesWithOrganization();
}

/**
 * Returns the musician status for the organization stored in 
 * the static login data
 */ 
public public MusicianStatus getMusicianStatus() {
    for (StatusWithOrganization s : statusesWithOrganization) {
        if (LoginData.organizationId.equals(s.getOrganization().getId())) {
            return s.getMusicianStatus();
        }
    }
    return null;
}
share|improve this answer
thanks for the quick answer: I thought on that but i think i can't use musician.musicianStatus = ... in Hibernate queries than, or? – Holla Jan 31 '12 at 12:54
No, you can't. You've changed the database schema and the way entities are associated. You'll have to refactor the code. You could also use a filter, but I get the feeling that you might regret it later, when you'll have to exploit the additional organization column. See docs.jboss.org/hibernate/core/3.6/reference/en-US/html_single/… – JB Nizet Jan 31 '12 at 13:03
thanks, i think a filter could be what I'm looking for. I added some code to the question for better understanding. – Holla Jan 31 '12 at 14:15
i looked through the filter docu but i think i can't get the Set<MusicianHasStatus> to a singel MusicianStatus. Or is there a way? – Holla Jan 31 '12 at 14:51
I don't know, because I have never used them. But if the where clause of the query makes sure that at most one row is ever returned, I don't see why you couldn't map the association as a ToOne association. The additional table is a join table, that must be filtered. – JB Nizet Jan 31 '12 at 14:54
show 2 more comments

Id's suggest you to use the @Where( clause = "MYCONDITION" ) clause, since it will filter the data at the query level which will give you much better performance.

share|improve this answer
This would need the where clause to be a compile-time constant, which it's not, if I understand the question correctly. – JB Nizet Jan 31 '12 at 13:05
if the value needs to be sent dynamically we can use filters, docs.jboss.org/hibernate/orm/4.0/manual/en-US/html/filters.html this will ensure that we can restrict the loading of unwanted objects.. – Anantha Sharma Jan 31 '12 at 13:08
Yes, that's also what I suggested in one of my comments. – JB Nizet Jan 31 '12 at 13:09
sorry mate.. didn't check the comment.. :) – Anantha Sharma Jan 31 '12 at 13:12

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.