Created
August 19, 2021 13:51
-
-
Save joakime/927be07e089afe90599c74eaf689c5c9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Config("t") | |
public class T { | |
X x1; | |
@Config("foo") | |
X x2; | |
} | |
@Config("x") | |
public class X { | |
@Config("val") | |
String val; | |
} | |
/* | |
t.x.val=hello | |
t.foo.val=world | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment