get() — spring-boot Function Reference
Architecture documentation for the get() function in ConditionEvaluationReport.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 41cc5476_ef6c_3893_5cc9_4496aad72e52["get()"] af3c88e3_eaef_49ad_3543_f931e5370f85["find()"] af3c88e3_eaef_49ad_3543_f931e5370f85 -->|calls| 41cc5476_ef6c_3893_5cc9_4496aad72e52 b0ffdc9a_7bf7_b836_e663_938ca37685b6["getDelta()"] b0ffdc9a_7bf7_b836_e663_938ca37685b6 -->|calls| 41cc5476_ef6c_3893_5cc9_4496aad72e52 7018a6a4_f2ea_818e_b82b_16b168750e28["NoSuchBeanDefinitionFailureAnalyzer()"] 7018a6a4_f2ea_818e_b82b_16b168750e28 -->|calls| 41cc5476_ef6c_3893_5cc9_4496aad72e52 83701cff_bed8_05a4_5bd0_16a08c63c2bf["hasName()"] 83701cff_bed8_05a4_5bd0_16a08c63c2bf -->|calls| 41cc5476_ef6c_3893_5cc9_4496aad72e52 e2e8acc6_7aa2_1dea_f400_fa74e29fcf3b["logReport()"] e2e8acc6_7aa2_1dea_f400_fa74e29fcf3b -->|calls| 41cc5476_ef6c_3893_5cc9_4496aad72e52 f335626e_c0dd_b128_b17d_8ae974181aa6["getReport()"] f335626e_c0dd_b128_b17d_8ae974181aa6 -->|calls| 41cc5476_ef6c_3893_5cc9_4496aad72e52 1264ff62_7de4_e7ce_312e_1f81ae1aaff8["logConditionEvaluationReport()"] 1264ff62_7de4_e7ce_312e_1f81ae1aaff8 -->|calls| 41cc5476_ef6c_3893_5cc9_4496aad72e52 1aee3a77_95b1_56dd_7c44_ca2f3ce89b76["orderByName()"] 1aee3a77_95b1_56dd_7c44_ca2f3ce89b76 -->|calls| 41cc5476_ef6c_3893_5cc9_4496aad72e52 293c55f6_eb55_eb6f_0291_2719abc50f99["loggerWithInfoLevelShouldLogAtInfo()"] 293c55f6_eb55_eb6f_0291_2719abc50f99 -->|calls| 41cc5476_ef6c_3893_5cc9_4496aad72e52 9d92c049_12df_a640_fd85_861602de41da["loggerWithDebugLevelShouldLogAtDebug()"] 9d92c049_12df_a640_fd85_861602de41da -->|calls| 41cc5476_ef6c_3893_5cc9_4496aad72e52 9ffb3a22_a372_28f1_5215_420417adf5fa["logsInfoOnErrorIfDebugDisabled()"] 9ffb3a22_a372_28f1_5215_420417adf5fa -->|calls| 41cc5476_ef6c_3893_5cc9_4496aad72e52 8f1aab3c_97f5_14a3_e964_ca9bdb4f4c4c["logsOutput()"] 8f1aab3c_97f5_14a3_e964_ca9bdb4f4c4c -->|calls| 41cc5476_ef6c_3893_5cc9_4496aad72e52 59544c76_8280_68d8_d066_965aa32075c4["logsDebugOnProcessAheadOfTime()"] 59544c76_8280_68d8_d066_965aa32075c4 -->|calls| 41cc5476_ef6c_3893_5cc9_4496aad72e52 5a41398b_8a82_1d8c_aa7b_3b1b67c440f1["matches()"] 5a41398b_8a82_1d8c_aa7b_3b1b67c440f1 -->|calls| 41cc5476_ef6c_3893_5cc9_4496aad72e52 style 41cc5476_ef6c_3893_5cc9_4496aad72e52 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
core/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/condition/ConditionEvaluationReport.java lines 181–194
public static ConditionEvaluationReport get(ConfigurableListableBeanFactory beanFactory) {
synchronized (beanFactory) {
ConditionEvaluationReport report;
if (beanFactory.containsSingleton(BEAN_NAME)) {
report = beanFactory.getBean(BEAN_NAME, ConditionEvaluationReport.class);
}
else {
report = new ConditionEvaluationReport();
beanFactory.registerSingleton(BEAN_NAME, report);
}
locateParent(beanFactory.getParentBeanFactory(), report);
return report;
}
}
Domain
Subdomains
Calls
- ConditionEvaluationReport()
- locateParent()
Called By
- NoSuchBeanDefinitionFailureAnalyzer()
- find()
- getDelta()
- getReport()
- hasName()
- logConditionEvaluationReport()
- logReport()
- loggerWithDebugLevelShouldLogAtDebug()
- loggerWithInfoLevelShouldLogAtInfo()
- logsDebugOnProcessAheadOfTime()
- logsInfoOnErrorIfDebugDisabled()
- logsOutput()
- matches()
- orderByName()
Source
Frequently Asked Questions
What does get() do?
get() is a function in the spring-boot codebase.
What does get() call?
get() calls 2 function(s): ConditionEvaluationReport, locateParent.
What calls get()?
get() is called by 14 function(s): NoSuchBeanDefinitionFailureAnalyzer, find, getDelta, getReport, hasName, logConditionEvaluationReport, logReport, loggerWithDebugLevelShouldLogAtDebug, and 6 more.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free