Fix metadata for spring.profiles.[include|active]

See gh-6995
This commit is contained in:
Stephane Nicoll 2016-11-28 09:32:04 +01:00
parent 604d0cedd7
commit 0119c3a543
1 changed files with 2 additions and 2 deletions

View File

@ -180,13 +180,13 @@
},
{
"name": "spring.profiles.active",
"type": "java.lang.String",
"type": "java.util.List<java.lang.String>",
"sourceType": "org.springframework.boot.context.config.ConfigFileApplicationListener",
"description": "Comma-separated list of active profiles. Can be overridden by a command line switch."
},
{
"name": "spring.profiles.include",
"type": "java.lang.String",
"type": "java.util.List<java.lang.String>",
"sourceType": "org.springframework.boot.context.config.ConfigFileApplicationListener",
"description": "Unconditionally activate the specified comma separated profiles."
},