## Feature Requests Please consider supporting database spatial data types (MySQL spatial or PostGIS). Example: ```java @Getter @Setter @Entity(listener = SampleEntityListener.class) @Table(name = "SAMPLE") public class SampleEntity { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) @Column(name = "ID") private Long id; @Column(name = "POLY") private org.locationtech.jts.geom.Polygon poly; } ```