I currently have a Spring application.properties
with 2 properties defined as follows:
validator.url=http://location.com/${domain}/${family}
query.validator.url=${validator.url}
Currently my application resolves query.validator.url
to be ${validator.url}
is there anyway that I can have it resolve to the same value as validator.url
which is http://location.com/${domain}/${family}
Note: ${domain}
and ${family}
don't resolve, they are handled in code.