I want to use the @Value annotation to inject a Double property such as:
@Service public class MyService { @Value(\"${item.priceFactor}\") private D
This should solve the problem-
@Value("#{T(Double).parseDouble('${item.priceFactor}')}") private Double priceFactor;