You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 8, 2022. It is now read-only.
it has some drawbacks as it could conflict with another (nested) key. Otherwise it's definitely possible.
Depending on the usecase, this could also be an alternative (even though quite verbose):
interface B {
@Default("${settings.dimension.filter-null-value}")
boolean filterNullGrouping();
S settings();
}
interface S {
D dimension();
}
interface D {
@Key("filter-null-value")
boolean filterNullValue();
}
Support the path expression for
@Key
annotation like the picture above.The text was updated successfully, but these errors were encountered: