Home / Function/ javaBeanNameAnnotationProperties() — spring-boot Function Reference

javaBeanNameAnnotationProperties() — spring-boot Function Reference

Architecture documentation for the javaBeanNameAnnotationProperties() function in NameAnnotationPropertiesTests.java from the spring-boot codebase.

Entity Profile

Dependency Diagram

graph TD
  a53c0f70_fcfb_29a9_2c68_ecc50afb9729["javaBeanNameAnnotationProperties()"]
  a4041ee3_920f_3ffa_6d69_6e3bcd2c6cdc["withProperty()"]
  a53c0f70_fcfb_29a9_2c68_ecc50afb9729 -->|calls| a4041ee3_920f_3ffa_6d69_6e3bcd2c6cdc
  a7060ba0_7028_1911_946e_7c3090117119["fromSource()"]
  a53c0f70_fcfb_29a9_2c68_ecc50afb9729 -->|calls| a7060ba0_7028_1911_946e_7c3090117119
  facc73e3_5f28_4513_9b1f_79367931e644["withDescription()"]
  a53c0f70_fcfb_29a9_2c68_ecc50afb9729 -->|calls| facc73e3_5f28_4513_9b1f_79367931e644
  3a84f306_c04e_ed63_ecc7_7013edbb2681["withDefaultValue()"]
  a53c0f70_fcfb_29a9_2c68_ecc50afb9729 -->|calls| 3a84f306_c04e_ed63_ecc7_7013edbb2681
  style a53c0f70_fcfb_29a9_2c68_ecc50afb9729 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

configuration-metadata/spring-boot-configuration-processor/src/test/java/org/springframework/boot/configurationprocessor/NameAnnotationPropertiesTests.java lines 64–75

	@Test
	void javaBeanNameAnnotationProperties() {
		ConfigurationMetadata metadata = compile(JavaBeanNameAnnotationProperties.class);
		assertThat(metadata)
			.has(Metadata.withProperty("named.import", String.class)
				.fromSource(JavaBeanNameAnnotationProperties.class)
				.withDescription("Imports to apply."))
			.has(Metadata.withProperty("named.default", Boolean.class)
				.fromSource(JavaBeanNameAnnotationProperties.class)
				.withDefaultValue("Whether default mode is enabled.")
				.withDefaultValue(true));
	}

Domain

Subdomains

Frequently Asked Questions

What does javaBeanNameAnnotationProperties() do?
javaBeanNameAnnotationProperties() is a function in the spring-boot codebase.
What does javaBeanNameAnnotationProperties() call?
javaBeanNameAnnotationProperties() calls 4 function(s): fromSource, withDefaultValue, withDescription, withProperty.

Analyze Your Own Codebase

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

Try Supermodel Free