ฉันมีปัญหาบางอย่างในการรวมเทคโนโลยีเหล่านี้:
- Hibernate Spatial 4.0-M1
- PostGIS 2.0.2 (ด้วย JDBC 2.0.2 ที่คอมไพล์แล้ว)
- ไฮเบอร์เนต 4.1.1
ข้อผิดพลาดเฉพาะคือ:
Caused by: org.postgresql.util.PSQLException: Can't infer the SQL type to use for an instance of org.postgis.PGgeometry. Use setObject() with an explicit Types value to specify the type to use.
หมายเหตุประกอบเอนทิตีคือ:
@NotNull
@Column(columnDefinition="Geometry")
@Type(type="org.hibernate.spatial.GeometryType")
private Point geom;
และตัวอย่างการสร้างจุดคือ:
Location location = new Location();
WKTReader fromText = new WKTReader();
Point geom = null;
try {
geom = (Point) fromText.read("POINT(-56.2564083434446 -34.8982159791812)");
} catch (ParseException e) {
throw new RuntimeException("Not a WKT string:" + "SRID=4326;POINT(-56.2564083434446 -34.8982159791812)");
}
if (!geom.getGeometryType().equals("Point")) {
throw new RuntimeException("Geometry must be a point. Got a " + geom.getGeometryType());
}
location.setGeom(geom);
locationDAO.insert(location);