EmptyTypeMethodConfig Class — spring-boot Architecture
Architecture documentation for the EmptyTypeMethodConfig class in EmptyTypeMethodConfig.java from the spring-boot codebase.
Entity Profile
Relationship Graph
Source Code
configuration-metadata/spring-boot-configuration-processor/src/test/java/org/springframework/boot/configurationsample/method/EmptyTypeMethodConfig.java lines 26–48
@TestConfigurationProperties("something")
public class EmptyTypeMethodConfig {
private String name;
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
@TestConfigurationProperties("something")
public Foo foo() {
return new Foo();
}
static class Foo {
}
}
Domain
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free