将FunctionalJava选项< Type>Map到Hibernate

ej83mcc0  于 2022-11-14  发布在  Java
关注(0)|答案(3)|浏览(129)

我有一个HibernateMap的Java对象JKL,它包含一组常规的Hibernate可Map字段(如字符串和整数)。
我向其中添加了一个新的嵌入字段(它位于同一个表中--不是Map),即asdf,它是一个fj.data.Option<ASDF>。我已经明确表示这个字段实际上可能不包含任何内容(而不是每次访问它时都必须处理null)。
如何在JKL.hbm.xml文件中设置Map?我希望Hibernate在检索对象时自动将数据库中的null转换为fj.data.Option<ASDF>none。它还应该将ASDF的非空示例转换为fj.data.Option<ASDF>some
我还需要做什么其他的诡计吗?

1zmg4dgp

1zmg4dgp1#

我建议在访问器(getter和setter)中引入FunctionalJava的Option,而让Hibernate处理一个允许为null的简单Java字段。
例如,对于可选的Integer字段:

// SQL
CREATE TABLE `JKL` (
    `JKL_ID` INTEGER PRIMARY KEY,
    `MY_FIELD` INTEGER DEFAULT NULL
)

您可以直接MapHibernate私有字段:

// Java
@Column(nullable = true)
private Integer myField;

然后,您可以在访问器边界引入Option

// Java
public fj.data.Option<Integer> getMyField() {
    return fj.data.Option.fromNull(myField);
}

public void setMyField(fj.data.Option<Integer> value) {
    myField = value.toNull();
}

这能满足你的需求吗?

vjhs03f7

vjhs03f72#

您可以使用Hibernate的定制Map类型。文档在这里。下面是mapping Scala's Option的一个类似于HibernateMap的示例。
简单地说,您需要扩展org.hibernate.UserType接口。您还可以创建一个具有JKL类型子类型的泛型类型基类,类似于您在Scala示例中看到的内容。

unguejic

unguejic3#

我认为使用getter/setter更简单,但这里有一个我如何使其工作的示例:
(它适用于数字和字符串,但不适用于日期(@Temporal注解有错误))。

import com.cestpasdur.helpers.PredicateHelper;
import com.google.common.annotations.VisibleForTesting;
import com.google.common.base.Optional;
import org.apache.commons.lang.ObjectUtils;
import org.apache.commons.lang.StringUtils;
import org.hibernate.HibernateException;
import org.hibernate.usertype.UserType;
import org.joda.time.DateTime;

import java.io.Serializable;
import java.sql.*;

public class OptionUserType implements UserType {

@Override
public int[] sqlTypes() {
    return new int[]{
            Types.NULL
    };
}

@Override
public Class returnedClass() {
    return Optional.class;
}

@Override
public boolean equals(Object o, Object o2) throws HibernateException {
    return ObjectUtils.equals(o, o2);

}

@Override
public int hashCode(Object o) throws HibernateException {
    assert (o != null);
    return o.hashCode();
}

@Override
public Optional<? extends Object> nullSafeGet(ResultSet rs, String[] names, Object owner) throws HibernateException, SQLException {
    return Optional.fromNullable(rs.getObject(names[0]));
}

@VisibleForTesting
void handleDate(PreparedStatement st, Date value, int index) throws SQLException {
    st.setDate(index, value);
}

@VisibleForTesting
void handleNumber(PreparedStatement st, String stringValue, int index) throws SQLException {
    Double doubleValue = Double.valueOf(stringValue);
    st.setDouble(index, doubleValue);
}

@Override
public void nullSafeSet(PreparedStatement st, Object value, int index) throws SQLException {

    if (value != null) {
        if (value instanceof Optional) {
            Optional optionalValue = (Optional) value;
            if (optionalValue.isPresent()) {
                String stringValue = String.valueOf(optionalValue.get());

                if (StringUtils.isNotBlank(stringValue)) {

                    if (PredicateHelper.IS_DATE_PREDICATE.apply(stringValue)) {
                        handleDate(st, new Date(DateTime.parse(stringValue).getMillis()), index);
                    } else if (StringUtils.isNumeric(stringValue)) {
                        handleNumber(st, stringValue, index);
                    } else {
                        st.setString(index, optionalValue.get().toString());
                    }
                } else {
                    st.setString(index, null);
                }

            } else {
                System.out.println("else Some");
            }

        } else {
            //TODO replace with Preconditions guava
            throw new IllegalArgumentException(value + " is not implemented");

        }
    } else {
        st.setString(index, null);

    }

}

@Override
public Object deepCopy(Object o) throws HibernateException {
    return o;
}

@Override
public boolean isMutable() {
    return false;
}

@Override
public Serializable disassemble(Object o) throws HibernateException {
    return (Serializable) o;
}

@Override
public Object assemble(Serializable serializable, Object o) throws HibernateException {
    return serializable;
}

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

相关问题