After upgrading Hibernate-spatial to Version 5.0.0.CR2 the following declaration doesn\'t work anymore:
@Column(columnDefinition = \"geometry(Point,4326)\") @Typ
I am using hibernate 4.3.6 and hibernate spatial 5.2.2. The solution suggested above didn't work for me. However the below code worked If I add hibernate spatial 4.3
@Type(type="org.hibernate.spatial.GeometryType") private Point location;