Class PersonEntitySerializer
java.lang.Object
com.fasterxml.jackson.databind.JsonSerializer<PersonEntity>
cn.net.pap.neo4j.serializer.jackson.PersonEntitySerializer
- All Implemented Interfaces:
com.fasterxml.jackson.databind.jsonFormatVisitors.JsonFormatVisitable
public class PersonEntitySerializer
extends com.fasterxml.jackson.databind.JsonSerializer<PersonEntity>
使用 JsonSerializer 处理序列化过程中的循环引用
ObjectMapper objectMapperSerializer = new ObjectMapper();
SimpleModule module = new SimpleModule();
module.addSerializer(PersonEntity.class, new PersonEntitySerializer());
objectMapperSerializer.registerModule(module);
String serializerStr = objectMapperSerializer.writeValueAsString(p2);
-
Nested Class Summary
Nested classes/interfaces inherited from class com.fasterxml.jackson.databind.JsonSerializer
com.fasterxml.jackson.databind.JsonSerializer.None
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
serialize
(PersonEntity person, com.fasterxml.jackson.core.JsonGenerator jgen, com.fasterxml.jackson.databind.SerializerProvider provider) Methods inherited from class com.fasterxml.jackson.databind.JsonSerializer
acceptJsonFormatVisitor, getDelegatee, handledType, isEmpty, isEmpty, isUnwrappingSerializer, properties, replaceDelegatee, serializeWithType, unwrappingSerializer, usesObjectId, withFilterId
-
Constructor Details
-
PersonEntitySerializer
public PersonEntitySerializer()
-
-
Method Details
-
serialize
public void serialize(PersonEntity person, com.fasterxml.jackson.core.JsonGenerator jgen, com.fasterxml.jackson.databind.SerializerProvider provider) throws IOException - Specified by:
serialize
in classcom.fasterxml.jackson.databind.JsonSerializer<PersonEntity>
- Throws:
IOException
-