How i can overrid diffrent properties according to stages like qa,production
for qa
i was using this in common-shared.properties
spring.profiles.active=integrationqa
and in integrationqa-shared
asset.server.url.prefix.internal=integrationqa-cmsstatic
database.user=postgres
local database password
database.password=*****
database.driver=org.postgresql.Driver
this connection URL assumes that it is connecting to a schema called broadleaf
database.url=****
on qa server it should tak properties of qa but it’s getting bu default common-shared.properties
am i missing anything?