Point data type into MySQL8
I have a class with JTS point: @Entity @Data public class Check { @Id @GeneratedValue(strategy = IDENTITY) private Long id; private Point location; I then want to save that point to my database Point location = new GeometryFactory().createPoint((new Coordinate(10, 10,…