20

你有 Hibernate 实体的通用基类,即具有 id、版本和其他通用属性的 MappedSuperclass 吗?有什么缺点吗?

例子:

@MappedSuperclass()
public class BaseEntity {

    private Long id;
    private Long version;
    ...

    @Id @GeneratedValue(strategy = GenerationType.AUTO)
    public Long getId() {return id;}

    public void setId(Long id) {this.id = id;}

    @Version
    public Long getVersion() {return version;}
    ...

    // Common properties
    @Temporal(TemporalType.TIMESTAMP)
    public Date creationDate() {return creationDate;}
    ...
}

@Entity
public class Customer extends BaseEntity {
    private String customerName;
    ...
}
4

5 回答 5

5

这对我们来说很好。除了 ID 和创建日期,我们还有一个修改日期。我们还有一个中间TaggedBaseEntity实现了一个Taggable接口,因为我们的一些 Web 应用程序的实体有标签,比如 Stack Overflow 上的问题。

于 2008-10-01T10:20:56.607 回答
5

我使用的主要是实现 hashCode() 和 equals()。我还添加了一个漂亮地打印实体的方法。作为对上述 DR 的响应,其中大部分都可以被覆盖,但在我的实现中,您会遇到 Long 类型的 ID。

public abstract class BaseEntity implements Serializable {

    public abstract Long getId();
    public abstract void setId(Long id);

    /**
     * @see java.lang.Object#hashCode()
     */
    @Override
    public int hashCode() {
        final int prime = 31;
        int result = 1;
        result = prime * result + ((getId() == null) ? 0 : getId().hashCode());
        return result;
    }

    /**
     * @see java.lang.Object#equals(Object)
     */
    @Override
    public boolean equals(Object obj) {
        if (this == obj)
            return true;
        if (obj == null)
            return false;
        if (getClass() != obj.getClass())
            return false;
        BaseEntity other = (BaseEntity) obj;
        if (getId() == null) {
            if (other.getId() != null)
                return false;
        } else if (!getId().equals(other.getId()))
            return false;
        return true;
    }

    /**
     * @see java.lang.Object#toString()
     */
    @Override
    public String toString() {
        return new StringBuilder(getClass().getSimpleName()).append(":").append(getId()).toString();
    }

    /**
     * Prints complete information by calling all public getters on the entity.
     */
    public String print() {

        final String EQUALS = "=";
        final String DELIMITER = ", ";
        final String ENTITY_FORMAT = "(id={0})";

        StringBuffer sb = new StringBuffer("{");

        PropertyDescriptor[] properties = PropertyUtils.getPropertyDescriptors(this);
        PropertyDescriptor property = null;
        int i = 0;
        while ( i < properties.length) {

            property = properties[i];
            sb.append(property.getName());
            sb.append(EQUALS);

            try {
                Object value = PropertyUtils.getProperty(this, property.getName());
                if (value instanceof BaseEntity) {
                    BaseEntity entityValue = (BaseEntity) value;
                    String objectValueString = MessageFormat.format(ENTITY_FORMAT, entityValue.getId());
                    sb.append(objectValueString);
                } else {
                    sb.append(value);
                }
            } catch (IllegalAccessException e) {
                // do nothing
            } catch (InvocationTargetException e) {
                // do nothing
            } catch (NoSuchMethodException e) {
                // do nothing
            }

            i++;
            if (i < properties.length) {
                sb.append(DELIMITER);
            }
        }

        sb.append("}");

        return sb.toString();
    }
}
于 2009-01-05T23:45:20.970 回答
1

我会毫不犹豫地使用通用基类,毕竟这就是 O/R 映射的重点。

我也使用公共基类,但前提是实体至少共享一些公共属性。如果 ID 是唯一的公共属性,我不会使用它。到目前为止,我没有遇到任何问题。

于 2009-01-04T10:57:36.540 回答
0

它对我也很有效。

请注意,您还可以根据需要在此实体中添加一些事件侦听器/拦截器,例如 Hibernate Envers 一个或任何自定义的,以便您可以: - 跟踪所有修改 - 知道哪个用户进行了最后修改 - 自动更新最后修改- 自动设置第一个插入日期和其他类似的东西......

于 2011-12-15T19:12:35.007 回答
-1

你可以在这里找到一些样本

http://blogsprajeesh.blogspot.com/2010/01/nhibernate-defining-mappings-part-4.html

于 2010-01-14T16:34:02.760 回答