16

我有一个 Spring Roo + Hibernate 项目,它从客户端应用程序获取 JTS 知名文本 (WKT) 字符串输入,将其转换为 JTS Geometry 对象,然后尝试将其写入 PostGIS 数据库。我在 JDBC 连接和类型方面遇到了一些问题,但这些问题似乎已通过以下方式解决:

@Column(columnDefinition = "Geometry", nullable = true) 
private Geometry centerPoint;

并且转换确实:

Geometry geom = new WKTReader(new GeometryFactory(new PrecisionModel(), 4326)).read(source);

但是现在当 Hibernate 尝试将我的 Geometry 对象写入数据库时​​,我得到一个错误:

2012-08-31 21:44:14,096 [tomcat-http--18] ERROR org.hibernate.util.JDBCExceptionReporter - Batch entry 0 insert into land_use (center_point, version, id) values ('<stream of 1152 bytes>', '0', '1') was aborted.  Call getNextException to see the cause.
2012-08-31 21:44:14,096 [tomcat-http--18] ERROR org.hibernate.util.JDBCExceptionReporter - ERROR: Invalid endian flag value encountered.

很明显,该错误与二进制表示有关,该表示可能是作为具有某种字节顺序的众所周知的二进制 (WKB) 生成的。然而,由于 Hibernate 隐藏了所有的持久性,我真的无法判断事情的发展方向。

几天来我一直在与几何学的东西作斗争,关于这些错误的信息很少,所以有人有什么好主意吗?我可以在某处(Hibernate 或 PostGIS)指定字节顺序,或者以不同的格式(WKT)存储吗?

编辑:我还应该提到我正在使用最新的一切,这通常似乎是兼容的:

  • 春天 3.1.1,Roo 1.2.1
  • 休眠 3.6.9
  • 休眠空间 4.0-M1
  • 1.12
  • PostgreSQL 9.1
  • postgis-jdbc 1.5.3(不是最新的,但推荐用于 hibernate-spatial,从源代码编译)
  • postgis-jdbc 2.0.1(刚刚尝试了这个来匹配安装PostgreSQL的版本,同样的问题)

Hibernate Spatial 4 教程建议我将属性注释为:

@Type(type="org.hibernate.spatial.GeometryType")
private Geometry centerPoint;

...但是当我这样做时,我得到了另一个错误,当前注释解决了这个错误。

4

6 回答 6

13

我解决了这个问题,添加到“application.properties”这一行:

spring.jpa.properties.hibernate.dialect=org.hibernate.spatial.dialect.postgis.PostgisDialect
于 2018-07-06T07:14:25.550 回答
8

解决方案似乎如下:
@Column使用 JPA 注释将字段映射到所需的列,
@Type以使用方言指定 Hibernate 映射。

@Column(columnDefinition = "Geometry", nullable = true) 
@Type(type = "org.hibernate.spatial.GeometryType")
public Point centerPoint;

您可以在 hibernate.cfg.xml 文件中添加 Hibernate 属性以查看 db 请求,并尝试使用基于文本的编辑器(如带有“UTF-8”/“ANSI”/“其他字符集”的 Notepad++)捕获字符串编码问题

<!--hibernate.cfg.xml -->
<property name="show_sql">true</property>
<property name="format_sql">true</property>
<property name="use_sql_comments">true</property>

要添加休眠属性,您将拥有一个包含以下内容的 hibernate.cfg.xml 文件。不要复制/粘贴它,因为它是面向 MySQL 的。只要看看我在哪里插入了我之前唤起的属性。

 <?xml version="1.0" encoding="utf-8"?>
 <!DOCTYPE hibernate-configuration PUBLIC
 "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
 "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
 <hibernate-configuration>
      <session-factory>
           <property name="hibernate.bytecode.use_reflection_optimizer">true</property>
           <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
           <property name="hibernate.connection.password">db-password</property>
           <property name="hibernate.connection.url">jdbc:mysql://localhost:3306/db-name</property>
           <property name="hibernate.connection.username">db-username</property>
           <property name="hibernate.default_entity_mode">pojo</property>
           <property name="hibernate.dialect">org.hibernate.dialect.MySQL5InnoDBDialect</property>
           <property name="hibernate.format_sql">true</property>
           <property name="hibernate.search.autoregister_listeners">false</property>
           **<property name="hibernate.show_sql">true</property>**
           <property name="hibernate.use_sql_comments">false</property>

           <mapping ressource="...." />
           <!-- other hbm.xml mappings below... -->

      </session-factory>
 </hibernate-configuration>

记录所有 sql 的另一种方法是在 log4j.properties 文件中添加特定于包的属性:

log4j.logger.org.hibernate.SQL=DEBUG
log4j.logger.org.hibernate.type=TRACE

祝你好运!

于 2012-08-31T17:42:35.783 回答
4

piladooo 的解决方案适用于 spring boot 2.0.3、hibernate/spatial 5.2.17.Final、Postgres 9.5。

在我的例子中,实体中的列被定义为 @Column(name = "geometry") private Geometry geometry;

并在数据库中作为“几何”类型(以避免休眠自动生成的字节茶类型)

首先,我通过添加columnDefinition =“geometry”解决了“遇到的无效字节序标志值”,但之后休眠将通过“Schema-validation:在表[my_shema.my_geometry_table]中的列[geometry]中遇到错误的列类型进行模式验证;发现[geometry (Types#OTHER)],但期待 [bytea (Types#VARBINARY)]"

添加 spring.jpa.properties.hibernate.dialect=org.hibernate.spatial.dialect.postgis.PostgisDialect 后它终于起作用了。ColumnDefinition 现在也是多余的

于 2019-06-05T09:04:42.193 回答
2

另请参见http://trac.osgeo.org/postgis/ticket/1830在 Postgresql 9xx 和 Postgis 2xx 出现的时候出现了一个问题,在使用 postgres 实用程序 pgsql2shp 时导致了相同的“无效的字节序标志”错误。可以通过删除旧版本的库 libpq.so 来修复它,因为这是由于 Postgres 更改了 bytea 的默认行为。

于 2013-04-01T07:49:10.610 回答
0

在与给定问题进行了一些斗争之后,这里有一些步骤可以帮助我解决它。首先我应该提到我正在使用 WildFly 17 服务器、PostgreSQL 12 和 PostGIS 3.0.0。现在我认为在这个问题上很重要的步骤:

制作jboss-deployment-structure.xml文件META-INF(如果你没有的话),并排除 WildFly 自带的休眠

<jboss-deployment-structure>
    <deployment>
        <exclusions>
            <module name="org.hibernate" />
        </exclusions>
    </deployment>
</jboss-deployment-structure>

在您pom.xml添加依赖项

<dependency>
    <groupId>org.hibernate</groupId>
        <artifactId>hibernate-core</artifactId>
    <version>5.4.12.Final</version>
</dependency>

<dependency>
    <groupId>org.hibernate</groupId>
        <artifactId>hibernate-spatial</artifactId>
    <version>5.4.12.Final</version>
</dependency>

确保休眠核心和休眠空间具有相同的版本(使用您喜欢的任何版本)。

persistence.xml应该有财产

<property name="hibernate.dialect" value="org.hibernate.spatial.dialect.postgis.PostgisDialect"/>

最后,我认为这不是很重要,但我org.locationtech.jts在 Java 中用于几何。

我希望我没有跳过任何重要的事情,并且这些是必需的步骤。可能还有其他东西,但是尝试不同的解决方案已经过去了很多小时,而且我可能忘记包含一些依赖项/属性。答案基于个人经验,因此请随时发表评论,证明我错了或扩大答案。无论如何,我希望有人会发现这个答案很有用。

于 2020-02-19T16:33:09.140 回答
0

我让它与以下配置一起工作。我正在使用 Spring Boot 2.5.1、PostGIS 和 hibernate-spatial 5.4.32.Final。几个关键点:

  1. 我使用的 Point 类是 org.locationtech.jts.geom.Point
  2. 您不需要特殊的注释。这是我的实体类。

实体:

@Enity public class Vehicle {

    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    private Long id;

    private String name;    
    
    private Point location;
}

同样在 application.properties 中,我使用

spring.jpa.database-platform=org.hibernate.spatial.dialect.postgis.PostgisPG95Dialect

然后在服务类中,我可以通过如下调用将对象保存到数据库中。

public Vehicle createVehicle(String name, Double longitude, Double latitude) {
    GeometryFactory geometryFactory = new GeometryFactory(new PrecisionModel(), 4326);
        var point = geometryFactory.createPoint(new Coordinate(longitude, latitude));
    
        var vehicle = new Vehicle(name, point);      
        return vehicleRepository.save(vehicle);
}
于 2021-09-02T02:07:01.763 回答