ExampleDefaultsBean Class — spring-boot Architecture
Architecture documentation for the ExampleDefaultsBean class in JavaBeanBinderTests.java from the spring-boot codebase.
Entity Profile
Relationship Graph
Source Code
core/spring-boot/src/test/java/org/springframework/boot/context/properties/bind/JavaBeanBinderTests.java lines 687–709
static class ExampleDefaultsBean {
private int foo = 123;
private int bar = 456;
int getFoo() {
return this.foo;
}
void setFoo(int foo) {
this.foo = foo;
}
int getBar() {
return this.bar;
}
void setBar(int bar) {
this.bar = bar;
}
}
Domain
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free