loadDefaults() — spring-boot Function Reference
Architecture documentation for the loadDefaults() function in JavaLoggingSystem.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 1da03ab6_e4cc_7d27_1e09_0c155a8423c0["loadDefaults()"] af5c3bf3_23e4_0c15_5388_33a818bb8c5b["loadDefaults()"] 1da03ab6_e4cc_7d27_1e09_0c155a8423c0 -->|calls| af5c3bf3_23e4_0c15_5388_33a818bb8c5b 98ef4c45_8583_55d1_63b9_cc523f4d0e93["getPackagedConfigFile()"] 1da03ab6_e4cc_7d27_1e09_0c155a8423c0 -->|calls| 98ef4c45_8583_55d1_63b9_cc523f4d0e93 7ff38b43_3fd3_7b86_ff64_fd813bdc27d4["loadConfiguration()"] 1da03ab6_e4cc_7d27_1e09_0c155a8423c0 -->|calls| 7ff38b43_3fd3_7b86_ff64_fd813bdc27d4 style 1da03ab6_e4cc_7d27_1e09_0c155a8423c0 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
core/spring-boot/src/main/java/org/springframework/boot/logging/java/JavaLoggingSystem.java lines 89–97
@Override
protected void loadDefaults(LoggingInitializationContext initializationContext, @Nullable LogFile logFile) {
if (logFile != null) {
loadConfiguration(getPackagedConfigFile("logging-file.properties"), logFile);
}
else {
loadConfiguration(getPackagedConfigFile("logging.properties"), null);
}
}
Domain
Subdomains
Calls
- getPackagedConfigFile()
- loadConfiguration()
- loadDefaults()
Source
Frequently Asked Questions
What does loadDefaults() do?
loadDefaults() is a function in the spring-boot codebase.
What does loadDefaults() call?
loadDefaults() calls 3 function(s): getPackagedConfigFile, loadConfiguration, loadDefaults.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free