SampleBean Class — spring-boot Architecture
Architecture documentation for the SampleBean class in ConfigurationPropertiesAutoConfigurationTests.java from the spring-boot codebase.
Entity Profile
Relationship Graph
Source Code
core/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/context/ConfigurationPropertiesAutoConfigurationTests.java lines 78–92
@Component
@ConfigurationProperties("foo")
static class SampleBean {
private String name = "default";
String getName() {
return this.name;
}
void setName(String name) {
this.name = name;
}
}
Domain
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free