BScanConfiguration Class — spring-boot Architecture
Architecture documentation for the BScanConfiguration class in BScanConfiguration.java from the spring-boot codebase.
Entity Profile
Relationship Graph
Source Code
core/spring-boot/src/test/java/org/springframework/boot/context/properties/scan/valid/b/BScanConfiguration.java lines 25–61
public class BScanConfiguration {
public interface BProperties {
}
@ConfigurationProperties("b.first")
public static class BFirstProperties implements BProperties {
private final String name;
public BFirstProperties(String name) {
this.name = name;
}
public String getName() {
return this.name;
}
}
@ConfigurationProperties("b.second")
public static class BSecondProperties implements BProperties {
private int number;
public int getNumber() {
return this.number;
}
public void setNumber(int number) {
this.number = number;
}
}
}
Domain
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free