Details
-
Improvement
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
0.1-incubating
Description
Aligning with most config frameworks today. Instead of
@Config("key1") @ConfigDefault("foo"); private String configuredValue;
one would write
@Config("key1", defaultValue="foo") private String configuredValue;
This reduces the annotation needed.