gpt4 book ai didi

java - hibernate 自定义 UserType 不工作

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:04:24 25 4
gpt4 key购买 nike

我创建了一个 UserType(见下文)来处理我们一直将空日期保存为 0000-00-00 00:00:00 的 mySQL 数据库中的情况。

当我尝试使用 dispDT 的 null 来持久化我的实体时(见下文),它会生成此异常:“javax.persistence.PersistenceException: org.hibernate.PropertyValueException: not-null property references a null or transient value: myEntity.显示"

通过在 MySQLTimeStampUserType 的每个方法中设置一个断点,我可以看到它调用了 deepCopy 方法并且从不调用 nullSafeSet 方法。我认为 nuyllSafeSet 方法的全部意义在于允许我在持久化之前操纵该值。我做错了什么?

实体注解

@Basic(optional = false)
@Column(name = "disp_dt")
@Type(type = "mypackage.MySQLTimeStampUserType")
// @Temporal(TemporalType.TIMESTAMP)
private Date dispDt;

用户类型类

public class MySQLTimeStampUserType implements UserType {

private static final int[] SQL_TYPES = {Types.TIMESTAMP};

public int[] sqlTypes() {
return SQL_TYPES;
}

public Class returnedClass() {
return Date.class;
}

public boolean equals(Object x, Object y) throws HibernateException {
if (x == y) {
return true;
} else if (x == null || y == null) {
return false;
} else {
return x.equals(y);
}

}

public int hashCode(Object arg0) throws HibernateException {
throw new UnsupportedOperationException("Not supported yet.");
}

public Object nullSafeGet(ResultSet resultSet, String[] names, Object owner) throws HibernateException, SQLException {
// if the date is 0000-00-00 00:00:00 return null, else return the timestamp
Date result = null;
if (!resultSet.wasNull()) {
if (!resultSet.getString(names[0]).equals("0000-00-00 00:00:00")) {
result = resultSet.getDate(names[0]);
}
}
return result;
}

public void nullSafeSet(PreparedStatement statement, Object value, int index) throws HibernateException, SQLException {
// if the date is null set the value to "0000-00-00 00:00:00" else save the timestamp
if (value == null) {
statement.setString(index, "0000-00-00 00:00:00");
} else {
statement.setTimestamp(index,(Timestamp) value);
}

}

public Object deepCopy(Object value) throws HibernateException {
return value;
}

public boolean isMutable() {
return false;
}

public Serializable disassemble(Object value) throws HibernateException {
throw new UnsupportedOperationException("Not supported yet.");
}

public Object assemble(Serializable cached, Object owner) throws HibernateException {
throw new UnsupportedOperationException("Not supported yet.");
}

public Object replace(Object original, Object target, Object owner) throws HibernateException {
return original;
}
}

最佳答案

您的问题不在于您的 UserType - 这是因为您已将您的属性声明为非空(使用 @Basic optional="false"),但您将其设置为空。

也就是说,我会小心地返回 deepCopy/assemble/disassemble 方法中的原始值。 java.util.Date 可变的,你可能会在那里自找麻烦。

关于java - hibernate 自定义 UserType 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1567396/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com