Hi.

Does Spring Data Jpa (crud) repositories support Hibernate UserTypes?

@Type(type = "se.novamedia.jpaspike.domain.GeometryType")
@Column(name = "GEOM")
public Geometry getGeom() {
return this.geom;
}

Here all properties gets persisted except this property, mapped to a custom hibernate user type.

Cheers
/Jens