parent
eb4c1426d3
commit
16e2130896
|
|
@ -1,4 +1,16 @@
|
|||
{"properties": [
|
||||
{
|
||||
"name": "endpoints.configprops.keys-to-sanitize",
|
||||
"dataType": "java.lang.String",
|
||||
"sourceType": "org.springframework.boot.actuate.endpoint.ConfigurationPropertiesReportEndpoint",
|
||||
"description": "The keys that should be sanitize. Keys can be simple strings that the property ends with or regex expressions."
|
||||
},
|
||||
{
|
||||
"name": "endpoints.env.keys-to-sanitize",
|
||||
"dataType": "java.lang.String",
|
||||
"sourceType": "org.springframework.boot.actuate.endpoint.EnvironmentEndpoint",
|
||||
"description": "The keys that should be sanitize. Keys can be simple strings that the property ends with or regex expressions."
|
||||
},
|
||||
{
|
||||
"name": "management.health.db.enabled",
|
||||
"dataType": "java.lang.Boolean",
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@
|
|||
"defaultValue": false
|
||||
},
|
||||
{
|
||||
"name": "spring.batch.enabled",
|
||||
"name": "spring.batch.job.enabled",
|
||||
"dataType": "java.lang.Boolean",
|
||||
"description": "Execute all Spring Batch jobs in the context on startup.",
|
||||
"defaultValue": true
|
||||
|
|
|
|||
|
|
@ -68,6 +68,16 @@
|
|||
"dataType": "java.lang.Boolean",
|
||||
"sourceType": "org.springframework.boot.SpringApplication",
|
||||
"description": "Run the application in a web environment (auto-detected by default)"
|
||||
},
|
||||
{
|
||||
"name": "spring.profiles.active",
|
||||
"dataType": "java.lang.String",
|
||||
"description": "Set the active profiles as a comma separated list. Can be overridden by a command line switch."
|
||||
},
|
||||
{
|
||||
"name": "spring.profiles.include",
|
||||
"dataType": "java.lang.String",
|
||||
"description": "Unconditionally activate the specified comma separated profiles."
|
||||
}
|
||||
]}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue