Hibernate Annotations - 哪个更好,字段或属性访问? [英] Hibernate Annotations - Which is better, field or property access?

查看:29
本文介绍了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 - 哪个更好,字段或属性访问?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆