Is there a way to inject URI in the ogm.properties
(spring data neo4j) using environment variable ?
e.g. URI=http://neo4j:neo4j@localhost:7474 works fine; however if I try this: URI=http://${userid}:${pwd}@${hostName}:7474
and supply those as the environment variables does not work.
At runtime, spring data neo4j accesses the url as is without replacing the variable values.