WithRelaxedNamesProperties Class — spring-boot Architecture
Architecture documentation for the WithRelaxedNamesProperties 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 2099–2123
@EnableConfigurationProperties
@ConfigurationProperties("test")
static class WithRelaxedNamesProperties {
private @Nullable String fooBar;
private @Nullable String barBAZ;
@Nullable String getFooBar() {
return this.fooBar;
}
void setFooBar(@Nullable String fooBar) {
this.fooBar = fooBar;
}
@Nullable String getBarBAZ() {
return this.barBAZ;
}
void setBarBAZ(@Nullable String barBAZ) {
this.barBAZ = barBAZ;
}
}
Domain
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free