What is a typical use case for specifying multiple profiles at runtime for a Spring Boot application? I understand having different profiles for dev/int/qa/prod, etc. But when would it make sense to specify more than one profile when I run my SpringBoot app, e.g:
mvn spring-boot:run -Dspring-boot.run.profiles=foo,bar
Thanks in Advance.