3

How can I have _ (underscore) in my numerical property while injecting it with @Value annotation in Spring? If I include _ in my value, Spring throws TypeMismatchException.

.properties file:

min-score=20_000

java class:

@Value("${min-score}")
private int minScore;
Mahozad
  • 18,032
  • 13
  • 118
  • 133

1 Answers1

4

Use Spring EL in your @Value annotation to replace _ characters:

@Value("#{'${min-score}'.replace('_','')}")
private int minScore;
Mahozad
  • 18,032
  • 13
  • 118
  • 133