diff --git a/spring-boot-project/spring-boot-docs/src/main/asciidoc/howto.adoc b/spring-boot-project/spring-boot-docs/src/main/asciidoc/howto.adoc index 0d83beb636..3b53c0406d 100644 --- a/spring-boot-project/spring-boot-docs/src/main/asciidoc/howto.adoc +++ b/spring-boot-project/spring-boot-docs/src/main/asciidoc/howto.adoc @@ -1197,25 +1197,31 @@ configure various aspects of its processing. These features are described in six Jackson) that 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`.