DataSizeProperties Class — spring-boot Architecture
Architecture documentation for the DataSizeProperties 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 2402–2427
@EnableConfigurationProperties
@ConfigurationProperties("test")
static class DataSizeProperties {
private @Nullable DataSize size;
@DataSizeUnit(DataUnit.KILOBYTES)
private @Nullable DataSize anotherSize;
@Nullable DataSize getSize() {
return this.size;
}
void setSize(@Nullable DataSize size) {
this.size = size;
}
@Nullable DataSize getAnotherSize() {
return this.anotherSize;
}
void setAnotherSize(@Nullable DataSize anotherSize) {
this.anotherSize = anotherSize;
}
}
Domain
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free