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

register() — spring-boot Function Reference

Architecture documentation for the register() function in ConfigurationPropertiesBeanRegistrar.java from the spring-boot codebase.

Entity Profile

Dependency Diagram

graph TD
  97cde05d_816f_1b2a_bb28_577cbe9b7346["register()"]
  af90f7c4_f057_2e9f_a0ad_cc9ce0a25762["getName()"]
  97cde05d_816f_1b2a_bb28_577cbe9b7346 -->|calls| af90f7c4_f057_2e9f_a0ad_cc9ce0a25762
  78932865_1e25_7ce4_96a9_b7f3832c4620["containsBeanDefinition()"]
  97cde05d_816f_1b2a_bb28_577cbe9b7346 -->|calls| 78932865_1e25_7ce4_96a9_b7f3832c4620
  439182d3_90d5_0981_436c_93536801599b["registerBeanDefinition()"]
  97cde05d_816f_1b2a_bb28_577cbe9b7346 -->|calls| 439182d3_90d5_0981_436c_93536801599b
  style 97cde05d_816f_1b2a_bb28_577cbe9b7346 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

core/spring-boot/src/main/java/org/springframework/boot/context/properties/ConfigurationPropertiesBeanRegistrar.java lines 60–65

	void register(Class<?> type) {
		MergedAnnotation<ConfigurationProperties> annotation = MergedAnnotations
			.from(type, SearchStrategy.TYPE_HIERARCHY)
			.get(ConfigurationProperties.class);
		register(type, annotation);
	}

Domain

Subdomains

Calls

Frequently Asked Questions

What does register() do?
register() is a function in the spring-boot codebase.
What does register() call?
register() calls 3 function(s): containsBeanDefinition, getName, registerBeanDefinition.

Analyze Your Own Codebase

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

Try Supermodel Free