I have a properties file that I read by spring annotation like this
@Value(\"${platform}\") private String platform;
after I get th
The parameter is evaluated in compilation time. So it needs to be final or static final among others (ie Enum).
final
static final
Enum
I don't know if the @Value annotation allows that. But you can always implement your own annotation. Extending is not possible in Java annotations.
@Value