如何使用 Eclipse Hibernate 工具对启用 PostGIS 的数据库进行逆向工程?
Posted
技术标签:
【中文标题】如何使用 Eclipse Hibernate 工具对启用 PostGIS 的数据库进行逆向工程?【英文标题】:How to reverse engineer a PostGIS enabled database with Eclipse Hibernate Tools? 【发布时间】:2016-05-22 00:27:40 【问题描述】:这是我的设置:
PostgreSQL 9.3 PostGIS 2.1.4 日食火星 休眠工具 5.0 休眠空间我还在构建路径中添加了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
类型字段。
【问题讨论】:
【参考方案1】:您甚至可以在 hibernate.reveng.xml 中使用元标记来执行此操作,如下所示:
<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>
我正在使用休眠工具 5.0.0 和休眠空间 5.1.0。 有关元标记的更多信息,请访问hibernate meta
【讨论】:
以上是关于如何使用 Eclipse Hibernate 工具对启用 PostGIS 的数据库进行逆向工程?的主要内容,如果未能解决你的问题,请参考以下文章