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

AutoConfigurationImportEvent() — spring-boot Function Reference

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

Entity Profile

Dependency Diagram

graph TD
  29d90be0_fc22_5a29_9f12_cfbefb4bbe1b["AutoConfigurationImportEvent()"]
  c7609402_362c_9656_006f_63e2dca67659["onAutoConfigurationImportEventShouldRecordCandidates()"]
  c7609402_362c_9656_006f_63e2dca67659 -->|calls| 29d90be0_fc22_5a29_9f12_cfbefb4bbe1b
  1ca3eeca_8cfe_a123_43ab_6aa94911690a["onAutoConfigurationImportEventShouldRecordExclusions()"]
  1ca3eeca_8cfe_a123_43ab_6aa94911690a -->|calls| 29d90be0_fc22_5a29_9f12_cfbefb4bbe1b
  7001ddf6_82ce_aa78_c95b_19932de4ff87["onAutoConfigurationImportEventShouldApplyExclusionsGlobally()"]
  7001ddf6_82ce_aa78_c95b_19932de4ff87 -->|calls| 29d90be0_fc22_5a29_9f12_cfbefb4bbe1b
  a0903877_a371_74a2_bc13_3c08fccc8a19["onAutoConfigurationImportEventShouldApplyExclusionsGloballyWhenExclusionIsAlreadyApplied()"]
  a0903877_a371_74a2_bc13_3c08fccc8a19 -->|calls| 29d90be0_fc22_5a29_9f12_cfbefb4bbe1b
  style 29d90be0_fc22_5a29_9f12_cfbefb4bbe1b fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

core/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/AutoConfigurationImportEvent.java lines 36–40

	public AutoConfigurationImportEvent(Object source, List<String> candidateConfigurations, Set<String> exclusions) {
		super(source);
		this.candidateConfigurations = Collections.unmodifiableList(candidateConfigurations);
		this.exclusions = Collections.unmodifiableSet(exclusions);
	}

Domain

Subdomains

Called By

  • onAutoConfigurationImportEventShouldApplyExclusionsGlobally()
  • onAutoConfigurationImportEventShouldApplyExclusionsGloballyWhenExclusionIsAlreadyApplied()
  • onAutoConfigurationImportEventShouldRecordCandidates()
  • onAutoConfigurationImportEventShouldRecordExclusions()

Frequently Asked Questions

What does AutoConfigurationImportEvent() do?
AutoConfigurationImportEvent() is a function in the spring-boot codebase.
What calls AutoConfigurationImportEvent()?
AutoConfigurationImportEvent() is called by 4 function(s): onAutoConfigurationImportEventShouldApplyExclusionsGlobally, onAutoConfigurationImportEventShouldApplyExclusionsGloballyWhenExclusionIsAlreadyApplied, onAutoConfigurationImportEventShouldRecordCandidates, onAutoConfigurationImportEventShouldRecordExclusions.

Analyze Your Own Codebase

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

Try Supermodel Free