Skip to content

Commit 9a49e8e

Browse files
committed
Format Jackson property table so it fits within default page width
Closes gh-13709
1 parent 2dd744d commit 9a49e8e

File tree

1 file changed

+13
-7
lines changed

1 file changed

+13
-7
lines changed

spring-boot-docs/src/main/asciidoc/howto.adoc

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1272,25 +1272,31 @@ configure various aspects of its processing. These features are described in six
12721272
Jackson which map onto properties in the environment:
12731273

12741274
|===
1275-
|Jackson enum|Environment property
1275+
|Enum|Property|Values
12761276

12771277
|`com.fasterxml.jackson.databind.DeserializationFeature`
1278-
|`spring.jackson.deserialization.<feature_name>=true\|false`
1278+
|`spring.jackson.deserialization.<feature_name>`
1279+
|`true`, `false`
12791280

12801281
|`com.fasterxml.jackson.core.JsonGenerator.Feature`
1281-
|`spring.jackson.generator.<feature_name>=true\|false`
1282+
|`spring.jackson.generator.<feature_name>`
1283+
|`true`, `false`
12821284

12831285
|`com.fasterxml.jackson.databind.MapperFeature`
1284-
|`spring.jackson.mapper.<feature_name>=true\|false`
1286+
|`spring.jackson.mapper.<feature_name>`
1287+
|`true`, `false`
12851288

12861289
|`com.fasterxml.jackson.core.JsonParser.Feature`
1287-
|`spring.jackson.parser.<feature_name>=true\|false`
1290+
|`spring.jackson.parser.<feature_name>`
1291+
|`true`, `false`
12881292

12891293
|`com.fasterxml.jackson.databind.SerializationFeature`
1290-
|`spring.jackson.serialization.<feature_name>=true\|false`
1294+
|`spring.jackson.serialization.<feature_name>`
1295+
|`true`, `false`
12911296

12921297
|`com.fasterxml.jackson.annotation.JsonInclude.Include`
1293-
|`spring.jackson.default-property-inclusion=always\|non_null\|non_absent\|non_default\|non_empty`
1298+
|`spring.jackson.default-property-inclusion`
1299+
|`always`, `non_null`, `non_absent`, `non_default`, `non_empty`
12941300
|===
12951301

12961302
For example, to enable pretty print, set `spring.jackson.serialization.indent_output=true`.

0 commit comments

Comments
 (0)