From 9a49e8ef73c38967d7369dedca3c503a1b91054b Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Fri, 6 Jul 2018 13:48:50 +0100 Subject: [PATCH] Format Jackson property table so it fits within default page width Closes gh-13709 --- spring-boot-docs/src/main/asciidoc/howto.adoc | 20 ++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/spring-boot-docs/src/main/asciidoc/howto.adoc b/spring-boot-docs/src/main/asciidoc/howto.adoc index e4be20046fd..f23a5cbedd4 100644 --- a/spring-boot-docs/src/main/asciidoc/howto.adoc +++ b/spring-boot-docs/src/main/asciidoc/howto.adoc @@ -1272,25 +1272,31 @@ configure various aspects of its processing. These features are described in six Jackson which map onto properties in the environment: |=== -|Jackson enum|Environment property +|Enum|Property|Values |`com.fasterxml.jackson.databind.DeserializationFeature` -|`spring.jackson.deserialization.=true\|false` +|`spring.jackson.deserialization.` +|`true`, `false` |`com.fasterxml.jackson.core.JsonGenerator.Feature` -|`spring.jackson.generator.=true\|false` +|`spring.jackson.generator.` +|`true`, `false` |`com.fasterxml.jackson.databind.MapperFeature` -|`spring.jackson.mapper.=true\|false` +|`spring.jackson.mapper.` +|`true`, `false` |`com.fasterxml.jackson.core.JsonParser.Feature` -|`spring.jackson.parser.=true\|false` +|`spring.jackson.parser.` +|`true`, `false` |`com.fasterxml.jackson.databind.SerializationFeature` -|`spring.jackson.serialization.=true\|false` +|`spring.jackson.serialization.` +|`true`, `false` |`com.fasterxml.jackson.annotation.JsonInclude.Include` -|`spring.jackson.default-property-inclusion=always\|non_null\|non_absent\|non_default\|non_empty` +|`spring.jackson.default-property-inclusion` +|`always`, `non_null`, `non_absent`, `non_default`, `non_empty` |=== For example, to enable pretty print, set `spring.jackson.serialization.indent_output=true`.