Hibernate Annotations - Which is better, field or property access?(Hibernate Annotations - 哪个更好,字段访问还是属性访问?)
问题描述
这个问题与Hibernate Annotation Placement Question有些相关.
但我想知道哪个更好?通过属性访问还是通过字段访问?各有什么优缺点?
But I want to know which is better? Access via properties or access via fields? What are the advantages and disadvantages of each?
推荐答案
我更喜欢访问器,因为我可以在需要时向访问器添加一些业务逻辑.这是一个例子:
I prefer accessors, since I can add some business logic to my accessors whenever I need. Here's an example:
@Entity
public class Person {
@Column("nickName")
public String getNickName(){
if(this.name != null) return generateFunnyNick(this.name);
else return "John Doe";
}
}
此外,如果您将其他库放入混合中(例如一些 JSON 转换库或 BeanMapper 或 Dozer 或其他基于 getter/setter 属性的 bean 映射/克隆库),您将保证该库是同步的使用持久性管理器(都使用 getter/setter).
Besides, if you throw another libs into the mix (like some JSON-converting lib or BeanMapper or Dozer or other bean mapping/cloning lib based on getter/setter properties) you'll have the guarantee that the lib is in sync with the persistence manager (both use the getter/setter).
这篇关于Hibernate Annotations - 哪个更好,字段访问还是属性访问?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Hibernate Annotations - 哪个更好,字段访问还是属性访问?
基础教程推荐
- 问题http://apache.org/xml/features/xinclude测试日志4j 2 2022-01-01
- RabbitMQ:消息保持“未确认"; 2022-01-01
- 无法复制:“比较方法违反了它的一般约定!" 2022-01-01
- REST Web 服务返回 415 - 不支持的媒体类型 2022-01-01
- Spring AOP错误无法懒惰地为此建议构建thisJoinPoin 2022-09-13
- Struts2 URL 无法访问 2022-01-01
- 如何对 Java Hashmap 中的值求和 2022-01-01
- 使用堆栈算法进行括号/括号匹配 2022-01-01
- 存储 20 位数字的数据类型 2022-01-01
- 修改 void 函数的输入参数,然后读取 2022-01-01
