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

applyToProperties() — spring-boot Function Reference

Architecture documentation for the applyToProperties() function in AutoConfigureAnnotationProcessor.java from the spring-boot codebase.

Function java GradlePlugin DslExtensions calls 2 called by 1

Entity Profile

Dependency Diagram

graph TD
  1fdb4314_44c3_559d_a8d6_bdad3a18ff77["applyToProperties()"]
  3ba2493f_400f_e86c_b87c_8d9b93ffabc2["processElement()"]
  3ba2493f_400f_e86c_b87c_8d9b93ffabc2 -->|calls| 1fdb4314_44c3_559d_a8d6_bdad3a18ff77
  f30550f6_e16c_a795_6375_6de515c4744f["mergeProperties()"]
  1fdb4314_44c3_559d_a8d6_bdad3a18ff77 -->|calls| f30550f6_e16c_a795_6375_6de515c4744f
  678c6625_7e6d_e87a_c45c_8aa7bb334992["toCommaDelimitedString()"]
  1fdb4314_44c3_559d_a8d6_bdad3a18ff77 -->|calls| 678c6625_7e6d_e87a_c45c_8aa7bb334992
  style 1fdb4314_44c3_559d_a8d6_bdad3a18ff77 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

core/spring-boot-autoconfigure-processor/src/main/java/org/springframework/boot/autoconfigureprocessor/AutoConfigureAnnotationProcessor.java lines 325–330

		void applyToProperties(Map<String, String> properties, String className, List<Object> annotationValues) {
			if (this.omitEmptyValues && annotationValues.isEmpty()) {
				return;
			}
			mergeProperties(properties, className + "." + this.propertyName, toCommaDelimitedString(annotationValues));
		}

Domain

Subdomains

Calls

  • mergeProperties()
  • toCommaDelimitedString()

Called By

Frequently Asked Questions

What does applyToProperties() do?
applyToProperties() is a function in the spring-boot codebase.
What does applyToProperties() call?
applyToProperties() calls 2 function(s): mergeProperties, toCommaDelimitedString.
What calls applyToProperties()?
applyToProperties() is called by 1 function(s): processElement.

Analyze Your Own Codebase

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

Try Supermodel Free