Initially, I have the following spec:
@Value(\"#{props.isFPL}\") private boolean isFPL=false;
This works fine correctly getting the value f
For int type variable:
int
@Value("${my.int.config: #{100}}") int myIntConfig;
Note: there is no space before the colon, but an extra space after the colon.