How can my Spring Boot application read application.properties values with a parameter(s) like it's possible for ResourceBundles using MessageFormat?
For instance, if I have in application.properties
:
crm.api.url.contact=/contacts/v1/contact/vid/{0}/profile
What's the best way to replace thee placeholder {0}
with a real value (an ID in this case)?