Home / Class/ LombokSimpleDataProperties Class — spring-boot Architecture

LombokSimpleDataProperties Class — spring-boot Architecture

Architecture documentation for the LombokSimpleDataProperties class in LombokSimpleDataProperties.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/lombok/LombokSimpleDataProperties.java lines 31–54

@Data
@TestConfigurationProperties("data")
@SuppressWarnings("unused")
public class LombokSimpleDataProperties {

	private final String id = "super-id";

	/**
	 * Name description.
	 */
	private String name;

	private String description;

	private Integer counter;

	@Deprecated
	private Integer number = 0;

	private final List<String> items = new ArrayList<>();

	private final String ignored = "foo";

}

Domain

Analyze Your Own Codebase

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

Try Supermodel Free