I have a property file in spring as shown below.
label.company.name = ABC Company
label.company.address = 123, west street
label.company.message = Welcome to ABC Company
The problem I am facing is that this company name can vary, and there are lot of places that the company name refers in the file. So if I change the company name, all the places referring to the company name in the property file should also change. string search and replace should not be used (as per instructions given to me). How can i proceed with the above task.
The properties are called in the jsp files as follows
<spring:message code="label.company.name"></spring:message>
Please help me. Thank you