Hibernate:hbm.xml文件中的货币类型映射

时间:2018-08-15 07:32:17

标签: sql-server hibernate bigdecimal

在我的(Microsoft SQL Server)数据库中,我有一个表,其中有一个类型为money的列。 作为类中的注释,我有:

@Column(name = "preis", columnDefinition = "money", nullable=true)
private BigDecimal price;

这很好。但是,如何在hbm.xml文件中进行这样的映射?

 <property name = "price" column = "EPreis" type="big_decimal"/>

出现错误:

Schema-validation: wrong column type encountered in column ...
found [money (Types#DECIMAL)], but expecting [numeric(19,2) (Types#NUMERIC)]

1 个答案:

答案 0 :(得分:1)

尝试在属性定义中添加sql-type="money"