将hbm.xml文件更新为hibernate 5以获取hibernate.spatial.GeometryType

时间:2016-02-26 15:41:25

标签: hibernate hibernate-spatial

我有一个Location.hbm.xml文件,其中包含以下行:

<property name="coordinates" type="org.hibernate.spatial.GeometryType">
        <column name="coordinates" />
</property>

我们正在更新到hibernate 5,并且不再有GeometryType对象了。我应该使用什么类?

1 个答案:

答案 0 :(得分:0)

在Hibernate 5中,Hibernate Spatial与之前的Hibernate核心更紧密地集成在一起。如果您的coordinates属性是JTS Geometry类型,并且hibernate-spatial 5在类路径上,则应自动解析。该类型在类型注册表

中具有键jts_geometry