Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missing additional configuration metadata and fix type of defaultValue #1442

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading