We are defining below spatial column with PostGIS in Postgres 9.5. @NotNull @Column(name = "location", nullable = false, updatable = false, columnDefinition = "Geometry(Point,4326)") @JsonSerialize(using = PostgisPointSerializer.class) @JsonDeserialize(using = PostgisPointDeserializer.class) public Point location;
Each time we get an error: SQL Error: 0, SQLState: XX000 ERROR: Invalid endian flag value encountered HHH000010: On release of batch it still contained JDBC statements |
|