@ConfigurationProperties(value="jackson") public class JacksonConfiguration extends Object
| Modifier and Type | Field and Description | 
|---|---|
static int | 
DEFAULT_ARRAYSIZETHRESHOLD
The default array size threshold value. 
 | 
| Constructor and Description | 
|---|
JacksonConfiguration()  | 
| Modifier and Type | Method and Description | 
|---|---|
int | 
getArraySizeThreshold()  | 
String | 
getDateFormat()  | 
Map<com.fasterxml.jackson.databind.DeserializationFeature,Boolean> | 
getDeserializationSettings()  | 
Map<com.fasterxml.jackson.core.JsonGenerator.Feature,Boolean> | 
getGeneratorSettings()  | 
Locale | 
getLocale()  | 
Map<com.fasterxml.jackson.databind.MapperFeature,Boolean> | 
getMapperSettings()  | 
Map<com.fasterxml.jackson.core.JsonParser.Feature,Boolean> | 
getParserSettings()  | 
com.fasterxml.jackson.annotation.JsonInclude.Include | 
getSerializationInclusion()  | 
Map<com.fasterxml.jackson.databind.SerializationFeature,Boolean> | 
getSerializationSettings()  | 
TimeZone | 
getTimeZone()  | 
void | 
setArraySizeThreshold(int arraySizeThreshold)
Sets the array size threshold for data binding. 
 | 
void | 
setDateFormat(String dateFormat)
Sets the default date format to use. 
 | 
void | 
setDeserialization(Map<com.fasterxml.jackson.databind.DeserializationFeature,Boolean> deserialization)
Sets the deserialization features to use. 
 | 
void | 
setGenerator(Map<com.fasterxml.jackson.core.JsonGenerator.Feature,Boolean> generator)
Sets the generator features to use. 
 | 
void | 
setLocale(Locale locale)
Sets the locale to use. 
 | 
void | 
setMapper(Map<com.fasterxml.jackson.databind.MapperFeature,Boolean> mapper)
Sets the object mapper features to use. 
 | 
void | 
setParser(Map<com.fasterxml.jackson.core.JsonParser.Feature,Boolean> parser)
Sets the parser features to use. 
 | 
void | 
setSerialization(Map<com.fasterxml.jackson.databind.SerializationFeature,Boolean> serialization)
Sets the serialization features to use. 
 | 
void | 
setSerializationInclusion(com.fasterxml.jackson.annotation.JsonInclude.Include serializationInclusion)
Sets the serialization inclusion mode. 
 | 
void | 
setTimeZone(TimeZone timeZone)
Sets the timezone to use. 
 | 
public static final int DEFAULT_ARRAYSIZETHRESHOLD
public com.fasterxml.jackson.annotation.JsonInclude.Include getSerializationInclusion()
public Locale getLocale()
public TimeZone getTimeZone()
public String getDateFormat()
public Map<com.fasterxml.jackson.databind.SerializationFeature,Boolean> getSerializationSettings()
public Map<com.fasterxml.jackson.databind.DeserializationFeature,Boolean> getDeserializationSettings()
public Map<com.fasterxml.jackson.databind.MapperFeature,Boolean> getMapperSettings()
public Map<com.fasterxml.jackson.core.JsonParser.Feature,Boolean> getParserSettings()
public Map<com.fasterxml.jackson.core.JsonGenerator.Feature,Boolean> getGeneratorSettings()
public int getArraySizeThreshold()
public void setDateFormat(String dateFormat)
dateFormat - The date formatpublic void setLocale(Locale locale)
locale - The localepublic void setTimeZone(TimeZone timeZone)
timeZone - The timezonepublic void setArraySizeThreshold(int arraySizeThreshold)
arraySizeThreshold - The array size thresholdpublic void setSerialization(Map<com.fasterxml.jackson.databind.SerializationFeature,Boolean> serialization)
serialization - The serialization features.public void setDeserialization(Map<com.fasterxml.jackson.databind.DeserializationFeature,Boolean> deserialization)
deserialization - The deserialiation features.public void setMapper(Map<com.fasterxml.jackson.databind.MapperFeature,Boolean> mapper)
mapper - The object mapper featurespublic void setParser(Map<com.fasterxml.jackson.core.JsonParser.Feature,Boolean> parser)
parser - The parser featurespublic void setGenerator(Map<com.fasterxml.jackson.core.JsonGenerator.Feature,Boolean> generator)
generator - The generator featurespublic void setSerializationInclusion(com.fasterxml.jackson.annotation.JsonInclude.Include serializationInclusion)
serializationInclusion - The serialization inclusion mode