Can I do something like this?
private final static String myVar = "health.xyz.throughput";
@Value("${{myVar}:10}") // doesn't work of course
private Integer healthThroughput;
Essentially myVar
key is getting used elsewhere so wanted to see if it can be moved to a constant?