Is it possible to have a profile in spring boot and also another profile that inherits most of the parent values and beans?
For example I have two profiles staging and staging-task. I want staging-task to inherit the database configuration of the staging profile however I want it to override the jpa configuration.
Is profile inheritance available to @Configuration beans.