Skip to content

Commit

Permalink
Add missing additional configuration metadata and fix type of default…
Browse files Browse the repository at this point in the history
…Value

And move `spring.cloud.refresh.enabled` to `spring-cloud-context`.

Signed-off-by: Yanming Zhou <[email protected]>
  • Loading branch information
quaff committed Jan 21, 2025
1 parent 7e1cbf8 commit c0f9c2f
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,19 +1,13 @@
{
"properties": [
{
"defaultValue": "true",
"name": "spring.cloud.refresh.enabled",
"description": "Enables autoconfiguration for the refresh scope and associated features.",
"type": "java.lang.Boolean"
},
{
"defaultValue": true,
"name": "spring.cloud.httpclientfactories.apache.enabled",
"description": "Enables creation of Apache Http Client factory beans.",
"type": "java.lang.Boolean"
},
{
"defaultValue": "true",
"defaultValue": true,
"name": "spring.cloud.httpclientfactories.ok.enabled",
"description": "Enables creation of OK Http Client factory beans.",
"type": "java.lang.Boolean"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,24 @@
"description": "Enable the /resume endpoint (to send Lifecycle.start()).",
"defaultValue": true
},
{
"defaultValue": true,
"name": "spring.cloud.refresh.enabled",
"description": "Enables autoconfiguration for the refresh scope and associated features.",
"type": "java.lang.Boolean"
},
{
"defaultValue": true,
"name": "spring.cloud.refresh.on-restart.enabled",
"description": "Triggers scope refreshing on application context restart.",
"type": "java.lang.Boolean"
},
{
"name": "spring.cloud.refresh.refreshable",
"type": "java.util.Set<java.lang.String>",
"description": "Class names for beans to post process into refresh scope.",
"defaultValue": true
},
{
"name": "spring.cloud.refresh.extra-refreshable",
"type": "java.util.Set<java.lang.String>",
Expand Down

0 comments on commit c0f9c2f

Please sign in to comment.