Initially, I have the following spec:
@Value(\"#{props.isFPL}\") private boolean isFPL=false;
This works fine correctly getting the value f
Depends on how you're loading your properties, if you use something like
Then @Value should look like
@Value
@Value("${isFPL:true}")