Yes, here is the code:
@Override
public boolean equals(Object object) {
if (object == null || !this.getClass().equals(object.getClass())) {
return false;
}
Movie other = (Movie) object;
if (this.movieID != other.movieID && (this.movieID == null ||
!this.movieID.equals(other.movieID))) {
return false;
}
return true;
}
The comparison works correctly, if I get the user reference from the entity
manager. Is that a correct thing to do?
Also : now sometimes if I wait for a long time I get the following error
when trying to create a new favorite after waiting for a few minutes:
Cannot find faces context.
I am currently waiting to recreate the error, so I can post the error stack.
--
View this message in context: http://www.nabble.com/JPA-error-tp25092854p25094165.html
Sent from the java.net - glassfish persistence mailing list archive at Nabble.com.