I have this myProperties.properties files with the following content:
enum1 = a
enum2 = b
enum3 = c
enum4 = d
and so on...
My problem is how can I populate or inject all property values in a Map<String,String>
- enum1..4 as the key and 1..d as the value from Environment variable.
Thanks for your help.