这是我的设置:
我还在构建路径中添加了postgis-jdbc.jar
和jts.jar
。
.cfg.xml
文件打开时显示:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<property name="hibernate.connection.driver_class">org.postgresql.Driver</property>
<property name="hibernate.connection.password">the_pass</property>
<property name="hibernate.connection.url">jdbc:postgresql://localhost:5432/the_db</property>
<property name="hibernate.connection.username">me</property>
<property name="hibernate.default_schema">the_schema</property>
<property name="hibernate.dialect">org.hibernate.dialect.PostgreSQLDialect</property>
<property name="hibernate.dialect">org.hibernate.spatial.dialect.postgis.PostgisDialect"</property>
<!-- "Import" the mapping resources here -->
在reveng.xml
文件中,包含几何类型字段的表格使用table-filter
元素显式声明:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-reverse-engineering PUBLIC "-//Hibernate/Hibernate Reverse Engineering DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-reverse-engineering-3.0.dtd" >
<hibernate-reverse-engineering>
[...]
<table-filter match-name="coordinates"></table-filter>
<table-filter match-name="polygon"></table-filter>
</hibernate-reverse-engineering>
Hibernate代码生成配置正在使用这种几何类型字段的属性和方法创建POJO:
private Serializable geom;
public Serializable getGeom() {
return this.geom;
}
public void setGeom(Serializable geom) {
this.geom = geom;
}
在Hibernate Spatial tutorial中,几何字段映射到JTS类型,例如(com.vividsolutions.jts.geom.Point
)。因此,使用此代码,无法遵循其中提出的机制来检索/更新空间字段。
是否有可能以某种方式调整Hibernate配置以生成从空间字段到JTS类型的映射?或者必须使用这些生成的Serializable
属性?
更新:Bakc at the Hibernate Spatial mail list I am told我应该有Hibernate Spatial和Hibernate的匹配版本。 Hibernate Spatial 5.0.7不在官方网站上提供,但我在其他地方找到了它。即使使用这些匹配版本,我也会在生成的POJO中获得Serializable
类型字段。
答案 0 :(得分:0)
你甚至可以在你的hibernate.reveng.xml中使用meta标签来实现它:
<table name="position_vehicle" schema="public">
<primary-key>
<generator class="sequence">
<param name="sequence">position_vehicle_id_seq</param>
</generator>
<key-column name="id"/>
</primary-key>
<column name="position">
<meta attribute="use-in-tostring">true</meta>
<meta attribute="property-type">com.vividsolutions.jts.geom.Geometry</meta>
</column>
</table>
我正在使用hibernate工具5.0.0和hibernate空间5.1.0。 有关元标记的其他信息,请转至hibernate meta