ConstructorParameterProperties Class — spring-boot Architecture
Architecture documentation for the ConstructorParameterProperties class in ConfigurationPropertiesTests.java from the spring-boot codebase.
Entity Profile
Relationship Graph
Source Code
core/spring-boot/src/test/java/org/springframework/boot/context/properties/ConfigurationPropertiesTests.java lines 2446–2468
@ConfigurationProperties("test")
@Validated
static class ConstructorParameterProperties {
@NotEmpty
private final String foo;
private final int bar;
ConstructorParameterProperties(@DefaultValue("hello") String foo, int bar) {
this.foo = foo;
this.bar = bar;
}
String getFoo() {
return this.foo;
}
int getBar() {
return this.bar;
}
}
Domain
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free