processModel() — spring-boot Function Reference
Architecture documentation for the processModel() function in SpringBootJoranConfigurator.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 825608fa_c257_7873_e543_055bdcce839b["processModel()"] 878c2686_eec6_38d8_bdf6_fbc822ad1ac6["configureUsingAotGeneratedArtifacts()"] 878c2686_eec6_38d8_bdf6_fbc822ad1ac6 -->|calls| 825608fa_c257_7873_e543_055bdcce839b 81106d14_590e_899b_0e60_6a03650753fc["isAotProcessingInProgress()"] 825608fa_c257_7873_e543_055bdcce839b -->|calls| 81106d14_590e_899b_0e60_6a03650753fc a497e191_e773_6352_d30d_9069c86453cc["LogbackConfigurationAotContribution()"] 825608fa_c257_7873_e543_055bdcce839b -->|calls| a497e191_e773_6352_d30d_9069c86453cc style 825608fa_c257_7873_e543_055bdcce839b fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
core/spring-boot/src/main/java/org/springframework/boot/logging/logback/SpringBootJoranConfigurator.java lines 137–144
@Override
public void processModel(Model model) {
super.processModel(model);
if (!NativeDetector.inNativeImage() && isAotProcessingInProgress()) {
getContext().putObject(BeanFactoryInitializationAotContribution.class.getName(),
new LogbackConfigurationAotContribution(model, getModelInterpretationContext(), getContext()));
}
}
Domain
Subdomains
Calls
- LogbackConfigurationAotContribution()
- isAotProcessingInProgress()
Called By
Source
Frequently Asked Questions
What does processModel() do?
processModel() is a function in the spring-boot codebase.
What does processModel() call?
processModel() calls 2 function(s): LogbackConfigurationAotContribution, isAotProcessingInProgress.
What calls processModel()?
processModel() is called by 1 function(s): configureUsingAotGeneratedArtifacts.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free