We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
@ConstructorBinding @ConfigurationProperties("test") static class NestedConstructorProperties { private final String name; private final Nested nested; NestedConstructorProperties(String name, Nested nested) { this.name = name; this.nested = nested; } String getName() { return this.name; } Nested getNested() { return this.nested; } static class Nested { private int age; @ConstructorBinding Nested(int age) { this.age = age; } Nested() { } int getAge() { return this.age; } } }
The text was updated successfully, but these errors were encountered:
Which package has this note?
Sorry, something went wrong.
@giovannilima262 Sorry but I don't think I understood the question.
Which project locations need to solve this problem?
f9785d2
No branches or pull requests
The text was updated successfully, but these errors were encountered: