Home / Class/ WithMapProperties Class — spring-boot Architecture

WithMapProperties Class — spring-boot Architecture

Architecture documentation for the WithMapProperties 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 2125–2140

	@Validated
	@EnableConfigurationProperties
	@ConfigurationProperties("test")
	static class WithMapProperties {

		private @Nullable Map<String, String> map;

		@Nullable Map<String, String> getMap() {
			return this.map;
		}

		void setMap(@Nullable Map<String, String> map) {
			this.map = map;
		}

	}

Domain

Analyze Your Own Codebase

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

Try Supermodel Free