我有一张表sensor_location
:
CREATE TABLE public.sensor_location (
sensor_id INTEGER NOT NULL,
location_time TIMESTAMP WITHOUT TIME ZONE NOT NULL,
location_point public.geometry NOT NULL,
CONSTRAINT sensor_location_sensor_id_fkey FOREIGN KEY (sensor_id)
REFERENCES public.sensor(id)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE
)
我想要一个查询,它会在所选多边形内返回sensor_id
个传感器和location_time
。
查询应该类似于:
SELECT
sensor_id,
location_time,
FROM
public.sensor_location
WHERE
ST_Within(location_point, ST_Polygon(ST_GeomFromText('LINESTRING(-71.050316 48.422044,-71.070316 48.422044,-71.070316 48.462044,-71.050316 48.462044,-71.050316 48.422044)'), 0));
如何使用jOOQ做到这一点?甚至可以在PostGIS中使用jOOQ吗?我是否必须编写自己的SQL查询并使用jOOQ执行它?
我找到this,但我不知道如何使用它。我仍然是Java程序员的新手。
答案 0 :(得分:4)
jOOQ目前(版本3.8)没有对PostGIS的开箱即用支持,但您可以轻松添加自己的。
...然后,使用plain SQL肯定会有所帮助。这是一个例子,如何做到这一点:
ctx.select(SENSOR_LOCATION.SENSOR_ID, SENSOR_LOCATION.LOCATION_TIME)
.from(SENSOR_LOCATION)
.where("ST_WITHIN({0}, ST_Polygon(ST_GeomFromText('...'), 0))",
SENSOR_LOCATION.LOCATION_POINT)
.fetch();
注意如何使用如上所示的纯SQL模板机制仍然可以使用某种类型的安全性
在这种情况下,您可能希望构建自己的API,以封装所有纯SQL用法。以下是如何开始使用它的想法:
public static Condition stWithin(Field<?> left, Field<?> right) {
return DSL.condition("ST_WITHIN({0}, {1})", left, right);
}
public static Field<?> stPolygon(Field<?> geom, int value) {
return DSL.field("ST_Polygon({0}, {1})", Object.class, geom, DSL.val(value));
}
如果您还想支持将GIS数据类型绑定到JDBC驱动程序,那么实际上,自定义数据类型绑定将是可行的方法:
http://www.jooq.org/doc/latest/manual/sql-building/queryparts/custom-bindings
然后,您将使用自定义数据类型而非上述Object.class
,然后您可以使用Field<YourType>
而不是Field<?>
来提高其他类型的安全性。
答案 1 :(得分:0)
我发现jooq-postgis-spatial空间支持:https://github.com/dmitry-zhuravlev/jooq-postgis-spatial
它允许使用jts或postgis类型处理几何。