PersonPropertyEditor Class — spring-boot Architecture
Architecture documentation for the PersonPropertyEditor 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 2671–2679
static class PersonPropertyEditor extends PropertyEditorSupport {
@Override
public void setAsText(String text) {
String[] content = text.split(",");
setValue(new Person(content[1], content[0]));
}
}
Domain
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free