如何通过jdbc绑定JTS Geometry



我试图使用jdbc与PostgreSQL几何类型和得到以下错误:

org.jdbi.v3.core.statement.UnableToCreateStatementException with message:   
No argument factory registered for type [com.vividsolutions.jts.geom.Geometry]

几何体是我用.bindBean()绑定的bean的一部分。

我发现了一个相关的问题,但是答案不是很有帮助。

绑定这种类型的最佳方法是什么?

您可以将Jts的几何图形转换为geoJson,然后将geoJson绑定为jdbc中的字符串。


public class GeometryUtils {
private static final GeometryJSON geometryJSON = new GeometryJSON(10);

private static String writeToGeoJson(Geometry geometry) throws IOException {
final var stringWriter = new StringWriter();
geometryJSON.write(geometry, stringWriter);
return stringWriter.toString();
}
}

然后假设你的SQL查询是这样的

INSERT INTO XYZ(shape) VALUES (st_geomfromgeojson(:shape::jsonb))    

结合shapeGeometryUtils.writeToGeoJson(geom)

相关内容

  • 没有找到相关文章