Spatial
Overview
Hibernate Spatial was originally developed as a generic extension to Hibernate for handling geographic data. Since 5.0, Hibernate Spatial is now part of Hibernate ORM project, and it allows you to deal with geographic data in a standardized way.
Hibernate Spatial provides a standardized, cross-database interface to geographic data storage and query functions. It supports most of the functions described by the OGC Simple Feature Specification, and the supported databases are: Oracle 10g/11g, PostgreSql/PostGIS, MySQL, Microsoft SQL Server and H2/GeoDB, yet, not all databases support all the functions defined by Hibernate Spatial.
Hibernate Spatial uses the Java Topology Suite (JTS) as its geometry model. JTS is an implementation of the OpenGIS Simple Features Implementation Specification for SQLv. 1.1 (SFS). This specification is implemented in most RDBMS with spatial data support. It is also a direct precursor to SQL/MM Part 3: Spatial (ISO/IEC 13249-3).
The SFS specification defines a set of functions on geometries. Hibernate Spatial makes a subset of these functions available in HQL and in the Criteria Query API.
Configuration
Hibernate Spatial requires some configuration prior to start using it.
Dependency
You need to include the hibernate-spatial
dependency in your build environment.
For Maven, you need to add the following dependency:
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-spatial</artifactId>
<version>${hibernate.version}</version>
</dependency>
Dialects
Hibernate Spatial extends the Hibernate ORM dialects so that the spatial functions of the database are made available within HQL and JPQL.
So, for instance, instead of using the PostgreSQL82Dialect
, we use the Hibernate Spatial extension of that dialect which is the PostgisDialect
.
<property
name="hibernate.dialect"
value="org.hibernate.spatial.dialect.postgis.PostgisDialect"
/>
Not all databases support all the functions defined by Hibernate Spatial. The table below provides an overview of the functions provided by each database.
Function |
Description |
PostgresSQL |
Oracle 10g/11g |
MySQL |
SQLServer |
GeoDB (H2) |
Basic functions on Geometry |
||||||
|
SFS §2.1.1.1 |
|||||
|
SFS §2.1.1.1 |
|||||
|
SFS §2.1.1.1 |
|||||
|
SFS §2.1.1.1 |
|||||
|
SFS §2.1.1.1 |
|||||
|
SFS §2.1.1.1 |
|||||
|
SFS §2.1.1.1 |
|||||
|
SFS §2.1.1.1 |
|||||
|
SFS §2.1.1.1 |
|||||
Functions for testing Spatial Relations between geometric objects |
||||||
|
SFS §2.1.1.2 |
|||||
|
SFS §2.1.1.2 |
|||||
|
SFS §2.1.1.2 |
|||||
|
SFS §2.1.1.2 |
|||||
|
SFS §2.1.1.2 |
|||||
|
SFS §2.1.1.2 |
|||||
|
SFS §2.1.1.2 |
|||||
|
SFS §2.1.1.2 |
|||||
|
SFS §2.1.1.2 |
|||||
Functions that support Spatial Analysis |
||||||
|
SFS §2.1.1.3 |
|||||
|
SFS §2.1.1.3 |
|||||
|
SFS §2.1.1.3 |
|||||
|
SFS §2.1.1.3 |
|||||
|
SFS §2.1.1.3 (renamed from union) |
|||||
|
SFS §2.1.1.3 |
|||||
|
SFS §2.1.1.3 |
|||||
Common non-SFS functions |
||||||
|
Returns true if the geometries are within the specified distance of one another |
|||||
|
Returns a new geometry with its coordinates transformed to the SRID referenced by the integer parameter |
|||||
Spatial aggregate Functions |
||||||
|
Returns a bounding box that bounds the set of returned geometries |
- Postgis
-
For Postgis from versions 1.3 and later, the best dialect to use is
org.hibernate.spatial.dialect.postgis.PostgisDialect
.This translates the HQL spatial functions to the Postgis SQL/MM-compliant functions. For older, pre v1.3 versions of Postgis, which are not SQL/MM compliant, the dialect
org.hibernate.spatial.dialect.postgis.PostgisNoSQLMM
is provided.This dialect depends on the JDBC extensions in postgis.jar (see the Postgis documentation).
Beware of classpath problems in a Java EE containers where the JDBC drivers live in a different classpath than the Postgis JDBC extensions and/or Hibernate Spatial. For JBoss, some users found this post helpful. |
- MySQL
-
There are several dialects for MySQL:
MySQLSpatialDialect
-
a spatially-extended version of Hibernate
MySQLDialect
MySQLSpatialInnoDBDialect
-
a spatially-extended version of Hibernate
MySQLInnoDBDialect
MySQLSpatial56Dialect
-
a spatially-extended version of Hibernate
MySQL5DBDialect
. MySQLSpatial5InnoDBDialect
-
the same as
MySQLSpatial56Dialect
, but with support for the InnoDB storage engine.
MySQL versions before 5.6.1 had only limited support for spatial operators. Most operators only took account of the minimum bounding rectangles (MBR) of the geometries, and not the geometries themselves. This changed in version 5.6.1 were MySQL introduced These dialects may therefore produce results that differ from that of the other spatial dialects. For more information, see this page in the MySQL reference guide (esp. the section Functions That Test Spatial Relations Between Geometry Objects) |
- Oracle10g/11g
-
There is currently only one Oracle spatial dialect:
OracleSpatial10gDialect
which extends the Hibernate dialectOracle10gDialect
. This dialect has been tested on both Oracle 10g and Oracle 11g with theSDO_GEOMETRY
spatial database type.This dialect is the only dialect that can be configured using these Hibernate properties:
hibernate.spatial.connection_finder
-
the fully-qualified classname for the Connection finder for this Dialect (see below).
The
ConnectionFinder interfaceThe The default implementation will, when the passed object is not already an In may cases this strategy will suffice.
If not, you can provide your own implementation of this interface on the class path, and configure it in the |
hibernate.spatial.ogc_strict
-
true to use the OGC-compliant functions on SDO_GEOMETRY (see below)
The Oracle Spatial dialect can be configured to run in either OGC strict or non-strict mode. In OGC strict mode, the Open Geospatial compliant functions of Oracle Spatial are used in spatial operations (they exists in Oracle 10g, but are not documented). In non-strict mode, the usual Oracle Spatial functions are used directly, and mimic the OGC semantics.The default is OGC strict mode. You can change this to non-strict mode by setting the hibernate.spatial.ogc_strict property to false. Note that changing from strict to non-strict mode changes the semantics of the spatial operation. We have attempted to implement the OGC semantics as well we could using the standard Oracle Spatial operators, but this was not possible in all cases. On the plus side, non-strict mode should be faster in most cases. |
- SQL Server
-
The dialect
SqlServer2008Dialect
supports theGEOMETRY
type in SQL Server 2008 and later.
The |
- GeoDB (H2)
-
The
GeoDBDialect
supports the GeoDB a spatial extension of the H2 in-memory database.
The dialect has been tested with GeoDB version 0.7 |
Types
Hibernate Spatial comes with the following types:
- jts_geometry
-
Handled by
org.hibernate.spatial.JTSGeometryType
it maps a database geometry column type to acom.vividsolutions.jts.geom.Geometry
entity property type. - geolatte_geometry
-
Handled by
org.hibernate.spatial.GeolatteGeometryType
, it maps a database geometry column type to anorg.geolatte.geom.Geometry
entity property type.
The following entity uses the jts_geometry
to map the PostgreSQL geometry type to a com.vividsolutions.jts.geom.Point
.
@Entity(name = "Event")
public static class Event {
@Id
private Long id;
private String name;
@Type(type = "jts_geometry")
private Point location;
//Getters and setters are omitted for brevity
}
When creating such entity:
Event event = new Event();
event.setId( 1L);
event.setName( "Hibernate ORM presentation");
event.setLocation( (Point) new WKTReader().read( "POINT(10 5)"));
entityManager.persist( event );
Hibernate generates the following SQL statement:
INSERT INTO
Event (location, name, id)
VALUES
('POINT (10 5)', 'Hibernate ORM presentation', 1)
Hibernate Spatial defines many query functions that are available both in HQL and JPQL queries.
Event event = entityManager.createQuery(
"select e " +
"from Event e " +
"where within(e.location, :filter) = true", Event.class)
.setParameter("filter", new WKTReader().read( "POLYGON((1 1,20 1,20 20,1 20,1 1))"))
.getSingleResult();
This JPQL query generates the following SQL statement:
select
e.id as id1_0_,
e.location as location2_0_,
e.name as name3_0_
from Event e
where st_within(e.location, 'POLYGON ((1 1, 20 1, 20 20, 1 20, 1 1))') = true