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

initialize() — spring-boot Function Reference

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

Function java GradlePlugin DslExtensions calls 2 called by 2

Entity Profile

Dependency Diagram

graph TD
  d9471ed1_e3ee_0678_4ca8_2a20dfb150bf["initialize()"]
  d96e0984_c4d4_8c0c_f645_23c756d30e3c["initialize()"]
  d96e0984_c4d4_8c0c_f645_23c756d30e3c -->|calls| d9471ed1_e3ee_0678_4ca8_2a20dfb150bf
  905673dd_fe29_aaa8_a054_09cf6678c1d0["initialize()"]
  905673dd_fe29_aaa8_a054_09cf6678c1d0 -->|calls| d9471ed1_e3ee_0678_4ca8_2a20dfb150bf
  2aeccc50_af56_80f5_316b_823cc557064b["initializeWithSpecificConfig()"]
  d9471ed1_e3ee_0678_4ca8_2a20dfb150bf -->|calls| 2aeccc50_af56_80f5_316b_823cc557064b
  df59ff1c_478c_0390_366d_f7201ee82553["initializeWithConventions()"]
  d9471ed1_e3ee_0678_4ca8_2a20dfb150bf -->|calls| df59ff1c_478c_0390_366d_f7201ee82553
  style d9471ed1_e3ee_0678_4ca8_2a20dfb150bf fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

core/spring-boot/src/main/java/org/springframework/boot/logging/AbstractLoggingSystem.java lines 58–66

	@Override
	public void initialize(LoggingInitializationContext initializationContext, @Nullable String configLocation,
			@Nullable LogFile logFile) {
		if (StringUtils.hasLength(configLocation)) {
			initializeWithSpecificConfig(initializationContext, configLocation, logFile);
			return;
		}
		initializeWithConventions(initializationContext, logFile);
	}

Domain

Subdomains

Calls

Frequently Asked Questions

What does initialize() do?
initialize() is a function in the spring-boot codebase.
What does initialize() call?
initialize() calls 2 function(s): initializeWithConventions, initializeWithSpecificConfig.
What calls initialize()?
initialize() is called by 2 function(s): initialize, initialize.

Analyze Your Own Codebase

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

Try Supermodel Free