How to deserialize / serialize type Geometry in spring boot?

試著忘記壹切 提交于 2020-01-25 09:21:19

问题


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")
 @JsonSerialize(using = GeometrySerializer.class)
 @JsonDeserialize(contentUsing = GeometryDeserializer.class)
 private MultiPolygon coverageArea;

 @Column(name="address")
 @JsonSerialize(using = GeometrySerializer.class)
 @JsonDeserialize(contentUsing = GeometryDeserializer.class)
 private Point address;
}

Config class:

package com.zxventures.config;

@Configuration
public class JacksonConfig {

 @Bean
 public JtsModule jtsModule() {
  return new JtsModule();
 }
}

pom.xml:

<dependency>
<groupId>com.bedatadriven</groupId>
<artifactId>jackson-datatype-jts</artifactId>
<version>2.4</version>
</dependency>

The exception occurs:

could not deserialize; nested exception is 
org.hibernate.type.SerializationException: could not deserialize

I think I'm missing some code but I can not detect it; I think I put all the code I saw in similar questions.


回答1:


You're using Spatial data types, so need to include below dependency to work

<dependency>
  <groupId>org.hibernate</groupId>
  <artifactId>hibernate-spatial</artifactId>
</dependency>

And change dialect accordingly e.g. org.hibernate.spatial.dialect.mysql.MySQL56InnoDBSpatialDialect

See Spatial data types




回答2:


I had the same issue and added below line to application.properties then it works.

spring.jpa.database-platform=org.hibernate.spatial.dialect.postgis.PostgisDialect


来源:https://stackoverflow.com/questions/56861600/how-to-deserialize-serialize-type-geometry-in-spring-boot

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!