Joda-Money persistence via hibernate

前端 未结 6 2089
情话喂你
情话喂你 2021-02-13 17:58

There is a library for JodaTime that provides Hibernate persistence. Recently I started looking at Joda-Money and started to see how that can be persisted using hibernate and I

6条回答
  •  孤城傲影
    2021-02-13 18:47

    Since the link to the example in Sudarshan's answer is broken, here is an implementation of a simple custom user type for org.joda.money.BigMoney, that persists money objects in two columns amount and currency) and an example of how to use it. It works the same for org.joda.money.Money.

    package test;
    
    import java.io.Serializable;
    import java.math.BigDecimal;
    import java.sql.PreparedStatement;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    import java.util.Currency;
    
    import org.apache.commons.lang.ObjectUtils;
    import org.hibernate.HibernateException;
    import org.hibernate.engine.spi.SessionImplementor;
    import org.hibernate.type.StandardBasicTypes;
    import org.hibernate.type.Type;
    import org.hibernate.usertype.CompositeUserType;
    import org.joda.money.BigMoney;
    import org.joda.money.CurrencyUnit;
    
    public class MoneyUserType implements CompositeUserType
    {
        private static final String[] PROPERTY_NAMES = {"amount", "currencyUnit"};
        private static final Type[] PROPERTY_TYPES = {StandardBasicTypes.BIG_DECIMAL, StandardBasicTypes.CURRENCY};
    
        public MoneyUserType()
        {
            super();
        }
    
        public Object assemble(final Serializable cached, final SessionImplementor session, final Object owner)
        throws HibernateException
        {
            return cached;
        }
    
        public Serializable disassemble(final Object value, final SessionImplementor session) throws HibernateException
        {
            return (Serializable) value;
        }
    
        public String[] getPropertyNames()
        {
            return PROPERTY_NAMES.clone();
        }
    
        public Type[] getPropertyTypes()
        {
            return PROPERTY_TYPES.clone();
        }
    
        public Object getPropertyValue(final Object component, final int property) throws HibernateException
        {
            BigMoney money = (BigMoney) component;
            return (property == 0) ? money.getAmount() : money.getCurrencyUnit().toCurrency();
        }
    
        public Object nullSafeGet(final ResultSet rs, final String[] names, final SessionImplementor session,
        final Object owner) throws HibernateException, SQLException
        {
            BigDecimal amount = StandardBasicTypes.BIG_DECIMAL.nullSafeGet(rs, names[0], session);
            Currency currency = StandardBasicTypes.CURRENCY.nullSafeGet(rs, names[1], session);
            return BigMoney.of(CurrencyUnit.of(currency), amount);
        }
    
        public void nullSafeSet(final PreparedStatement st, final Object value, final int index,
        final SessionImplementor session) throws HibernateException, SQLException
        {
            BigMoney money = (BigMoney) value;
            BigDecimal amount = (money == null) ? null : money.getAmount();
            Currency currency = (money == null) ? null : money.getCurrencyUnit().toCurrency();
    
            StandardBasicTypes.BIG_DECIMAL.nullSafeSet(st, amount, index, session);
            StandardBasicTypes.CURRENCY.nullSafeSet(st, currency, index + 1, session);
        }
    
        public Object replace(final Object original, final Object target, final SessionImplementor session,
        final Object owner) throws HibernateException
        {
            return deepCopy(original);
        }
    
        public void setPropertyValue(final Object component, final int property, final Object value)
        throws HibernateException
        {
            throw new HibernateException("Money is immutable.");
        }
    
        public Object deepCopy(final Object value) throws HibernateException
        {
            return (value != null) ? BigMoney.of(((BigMoney) value).getCurrencyUnit(),
            ((BigMoney) value).getAmount()) : null;
        }
    
        public boolean equals(final Object x, final Object y) throws HibernateException
        {
            return ObjectUtils.equals(x, y);
        }
    
        public int hashCode(final Object x) throws HibernateException
        {
            return ObjectUtils.hashCode(x);
        }
    
        public boolean isMutable()
        {
            return false;
        }
    
        public Class returnedClass()
        {
            return BigMoney.class;
        }
    }
    

    Usage:

    @Type(type = "test.MoneyUserType")
    @Columns(columns = {@Column(name = "AMOUNT"), @Column(name = "CURRENCY")})
    private BigMoney money;
    

提交回复
热议问题