Spring @Value annotation not using defaults when property is not present
- by garyj
Hi All
I am trying to use @Value annotation in the parameters of a constructor as follows:
@Autowired
public StringEncryptor(
@Value("${encryptor.password:\"\"}") String password,
@Value("${encryptor.algorithm:\"PBEWithMD5AndTripleDES\"}") String algorithm,
@Value("${encryptor.poolSize:10}") Integer poolSize,
…