How to deserialize / serialize type Geometry in spring boot?
问题 I have an entity with attributes of type MultiPolygon and Point; so I'm making a get request but this is returning a SerializationException. I researched it and saw that I have to put some notes, create a configuration class and put the corresponding dependency in pom.xml. Follow as I did below: Entity: package com.zxventures.model; @Entity @Table(name = "pdv") public class PDV implements Serializable { private static final long serialVersionUID = 1L; @Column(name="coverage_area")