Class Jackson
java.lang.Object
org.apache.pekko.http.javadsl.marshallers.jackson3.Jackson
A JSON marshaller/unmarshaller using the Jackson library.
- 
Nested Class SummaryNested Classes
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionstatic <T> Unmarshaller<org.apache.pekko.util.ByteString,T> byteStringUnmarshaller(Class<T> expectedType) static <T> Unmarshaller<org.apache.pekko.util.ByteString,T> byteStringUnmarshaller(tools.jackson.databind.ObjectMapper mapper, Class<T> expectedType) static <T> Marshaller<T,RequestEntity> static <T> Marshaller<T,RequestEntity> marshaller(tools.jackson.databind.ObjectMapper mapper) static <T> Unmarshaller<HttpEntity,T> unmarshaller(Class<T> expectedType) static <T> Unmarshaller<HttpEntity,T> unmarshaller(tools.jackson.databind.ObjectMapper mapper, Class<T> expectedType) 
- 
Constructor Details- 
Jacksonpublic Jackson()
 
- 
- 
Method Details- 
marshaller
- 
marshallerpublic static <T> Marshaller<T,RequestEntity> marshaller(tools.jackson.databind.ObjectMapper mapper) 
- 
byteStringUnmarshallerpublic static <T> Unmarshaller<org.apache.pekko.util.ByteString,T> byteStringUnmarshaller(Class<T> expectedType) 
- 
unmarshaller
- 
unmarshallerpublic static <T> Unmarshaller<HttpEntity,T> unmarshaller(tools.jackson.databind.ObjectMapper mapper, Class<T> expectedType) 
- 
byteStringUnmarshallerpublic static <T> Unmarshaller<org.apache.pekko.util.ByteString,T> byteStringUnmarshaller(tools.jackson.databind.ObjectMapper mapper, Class<T> expectedType) 
 
-