Spring Integration

Package org.springframework.integration.json

Provides classes supporting JSON in Spring Integration.

See:
          Description

Interface Summary
JsonInboundMessageMapper.JsonMessageParser<P>  
JsonObjectMapper<P> Strategy interface to convert an Object to/from the JSON representation.
 

Class Summary
AbstractJsonInboundMessageMapper<P> Abstract InboundMessageMapper implementation that maps incoming JSON messages to a Message with the specified payload type.
Jackson2JsonObjectMapper Jackson 2 JSON-processor (@link https://github.com/FasterXML) JsonObjectMapper implementation.
JacksonJsonObjectMapper Jackson JSON-processor (@link http://jackson.codehaus.org) JsonObjectMapper implementation.
JacksonJsonObjectMapperProvider Simple factory to provide Jackson2JsonObjectMapper or JacksonJsonObjectMapper instances dependently of jackson-databind or jackson-mapper-asl libs in the classpath.
JsonInboundMessageMapper InboundMessageMapper implementation that maps incoming JSON messages to a Message with the specified payload type.
JsonObjectMapperAdapter<P> Simple JsonObjectMapper adapter implementation, if there is no need to provide entire operations implementation.
JsonOutboundMessageMapper OutboundMessageMapper implementation the converts a Message to a JSON string representation.
JsonToObjectTransformer<T> Transformer implementation that converts a JSON string payload into an instance of the provided target Class.
ObjectToJsonTransformer Transformer implementation that converts a payload instance into a JSON string representation.
 

Package org.springframework.integration.json Description

Provides classes supporting JSON in Spring Integration.


Spring Integration