I am trying to set the environment properties in a file configured for each device using the code. I would like to be able to nest some properties in others, for example:
browser=chrome
baseUrl=${server}/app/login.do
server=http://localhost
I would like to receive http://localhost/app/login.dowhen I receive the property baseUrl.
Does this support java.util.Propertiesthis behavior? If not, is there another main class?
source
share