Home / Class/ PersonProperties Class — spring-boot Architecture

PersonProperties Class — spring-boot Architecture

Architecture documentation for the PersonProperties 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 2200–2214

	@EnableConfigurationProperties
	@ConfigurationProperties("test")
	static class PersonProperties {

		private @Nullable Person person;

		@Nullable Person getPerson() {
			return this.person;
		}

		void setPerson(@Nullable Person person) {
			this.person = person;
		}

	}

Domain

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free