Read the rules before posting!
http://www.hibernate.org/ForumMailingli ... AskForHelp
Hibernate version:
3.0 rc1
Where did the documentation for the valid attribute types for the <meta tag go? I can't seem to find them anywhere.
Also, the generated hashcode source does not check for an object being null. for example, I only use the following code in my hashcode.
Code:
public int hashCode() {
int result = 17;
result = 37 * result + this.getId().hashCode();
return result;
}
If this is an new instance, and id has not been set, when I add it to any java.util.Set I get a nullpionter exception. Is it possibly to just modify the velocity template to fix this?
Thanks,
Todd