Home / Class/ NestedPropertiesSource Class — spring-boot Architecture

NestedPropertiesSource Class — spring-boot Architecture

Architecture documentation for the NestedPropertiesSource class in NestedPropertiesSource.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/source/generation/NestedPropertiesSource.java lines 21–60

@TestConfigurationPropertiesSource
public class NestedPropertiesSource {

	/**
	 * A name.
	 */
	private String name;

	private final Nested nested = new Nested();

	public String getName() {
		return this.name;
	}

	public void setName(String name) {
		this.name = name;
	}

	public Nested getNested() {
		return this.nested;
	}

	public static class Nested {

		/**
		 * Another name.
		 */
		private String name;

		public String getName() {
			return this.name;
		}

		public void setName(String name) {
			this.name = name;
		}

	}

}

Domain

Analyze Your Own Codebase

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

Try Supermodel Free