使用Hibernate时,实体类的设计原则

使用Hibernate时,实体类的设计原则
1、提供一个默认的(即无参的)构造函数(constructor)
2、提供一个标识属性(可选)(identifier property)
3、使用非final的类(与lazy有关,可选)(not final)
4、为持久化字段声明访问器(accessors)

你可能感兴趣的:(使用Hibernate时,实体类的设计原则)