-
Notifications
You must be signed in to change notification settings - Fork 41.4k
Closed
Labels
type: bugA general bugA general bug
Milestone
Description
Spring Boot 1.2.2.RELEASE
I'm using @ConfigurationProperties
annotation on class to populate properties.
Consider having these property files:
application.yml:
urls:
- http://www.aargauerzeitung.ch
- http://www.bzbasel.ch
- http://www.basellandschaftlichezeitung.ch
- http://www.limmattalerzeitung.ch
application-dev.yml:
urls:
- http://google.com
When launching the app with -Dspring.profiles.active=dev
I got the following value for "urls":
- http://google.com
- http://www.bzbasel.ch
- http://www.basellandschaftlichezeitung.ch
- http://www.limmattalerzeitung.ch
but it should be just:
- http://google.com
Metadata
Metadata
Assignees
Labels
type: bugA general bugA general bug