Skip to content
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