hibernate学习:联合主键2

一:运行上一篇文章的程序会发现,后台输出两个warn

17:22:14,232  WARN RootClass:233 - composite-id class does not override equals(): com.hibernate.model.TeacherPK
17:22:14,234  WARN RootClass:238 - composite-id class does not override hashCode(): com.hibernate.model.TeacherPK

主键对象需要重写equals()方法
主键对象需要重写hashCode()方法
为了保证主键唯一性


二:联合主键对象完善




你可能感兴趣的:(Hibernate,equals,HashCode,主键策略)