I have 5 environments:
- local (my development machine) - dev - qc - uat - live - staging
I want different application properties to be u
A probable cause could be that you do not pass the command line parameters into the applications main method. I made the same mistake some weeks ago.
public static final void main(String... args) { SpringApplication.run(Application.class, args); }