/hibernate-postgresql

extra type mapping for PostgreSQL-specific types such as hstore and inet

Primary LanguageJavaApache License 2.0Apache-2.0

hibernate-postgresql

Extra type mapping for PostgreSQL-specific types such as hstore and inet for Hibernate.

I haven't written most of the code: I've just scoured the web for code that's already been written and tried to put it in one place.

Sources include:

How To Use

Java Source

@TypeDefs(value={
    @TypeDef(name = "hstore", typeClass = com.github.thealchemist.pg_hibernate.HstoreType.class),
    @TypeDef(name = "inet", typeClass = com.github.thealchemist.pg_hibernate.InetAddressType.class)
})
public class LoggedAction implements Serializable {
  @Type(type = "hstore")
  @Column(name="row_data", columnDefinition="hstore")
  private Map<String, String> rowData;
	
  @Column(name="client_addr", columnDefinition="inet")
  @Type(type="inet")
  private InetAddress clientAddr;

Maven Configuration (pom.xml)

        <dependency>
            <groupId>com.github.the-alchemist</groupId>
            <artifactId>hibernate-postgresql</artifactId>
            <version>1.0.13</version>
        </dependency>

Full List of Supported Types

  • box
  • circle
  • hstore
  • inet
  • point
  • lineseg
  • polygon
  • string[]
  • intarray

Contributions Welcome!