Spring-Boot, Spring profiles and configuration files
Note to self: When using Spring-Boot, use application.conf as a base configuration for the needed values. Configuration values for the specific profile go into the application-<profile>.config file.
Profiles are activated by using either the -Dspring.profiles.active=<profile>
VM flag or --spring.profiles.active=<profile>
commandline arg.