Hi.
In my Spring Boot 2.4.3 application I've the following YAML configuration in the application.yml file:
spring.profiles.include: native
spring.profiles.group.default: demo-data,dev
As a result, I now get just the native profile as being activated.
This was not the case with Spring Boot 2.1.2 where I had:
- in the
application.yml file:
spring.profiles.include: native
- in the
application-default.yml file:
spring.profiles.active: demo-data,dev
and, as a result, all of them where activated.
Is there a way to get the old behaviour back?