In my application.properties file if I have the path configured like below Java successfully recognizes the path.
pathToInputFile=/kcs/data/incoming/ready/
pathToInputFileProcess=/kcs/data/incoming/work/
If I have the below way using environment variable Java program doesn't recognize the path
Environmental variable TOM_DATA is set as /kcs
pathToInputFile=${TOM_DATA}/data/incoming/ready/
pathToInputFileProcess=${TOM_DATA}/data/incoming/work/
Can I use environment variable inside application.properties file?