Browse Source

Polish "Add since to deprecations in config metadata JSON files"

This restores properties that were accidentally removed in the
changes for gh-48122.
pull/48124/head
Andy Wilkinson 1 month ago
parent
commit
083a0a68af
  1. 14
      module/spring-boot-actuator-autoconfigure/src/main/resources/META-INF/additional-spring-configuration-metadata.json

14
module/spring-boot-actuator-autoconfigure/src/main/resources/META-INF/additional-spring-configuration-metadata.json

@ -44,11 +44,21 @@ @@ -44,11 +44,21 @@
}
},
{
"name": "management.endpoints.jackson.isolated-object-mapper",
"name": "management.endpoints.jackson.isolated-json-mapper",
"type": "java.lang.Boolean",
"description": "Whether to use an isolated object mapper to serialize endpoint JSON.",
"description": "Whether to use an isolated JsonMapper to serialize endpoint JSON.",
"defaultValue": true
},
{
"name": "management.endpoints.jackson2.isolated-object-mapper",
"type": "java.lang.Boolean",
"description": "Whether to use an isolated object mapper to serialize endpoint JSON.",
"defaultValue": true,
"deprecation": {
"reason": "Jackson 3 is preferred.",
"since": "4.0.0"
}
},
{
"name": "management.endpoints.jmx.domain",
"defaultValue": "org.springframework.boot"

Loading…
Cancel
Save