EN
Spring @Value annotation default value
5 points
Example:
xxxxxxxxxx
1
"${my.properties:my default string value}") (
2
private String myStringConfig;
3
4
"${my.properties:true}") (
5
private boolean myBooleanConfig;
6
7
"${my.properties:123}") (
8
private int myIntConfig;