Код: Выделить всё
myprogram:
my-property: 5d # respectively 5 days
Код: Выделить всё
@ConfigurationProperties("myprogram")
public class MyProgramProperties {
@DurationUnit(ChronoUnit.SECONDS)
private Duration myProperty = Duration.ofSeconds(30); // default = 30 sec, if config var is not set
public Duration getMyProperty() {
return this.myProperty ;
}
public void setMyProperty(Duration myProperty ) {
this.myProperty = myProperty ;
}
}
Код: Выделить всё
myprogram:
my-property: 5d 3h 5m # respectively 5 days, 3 hours, 5 minutes
Мобильная версия