getUserConfigurationResults() — spring-boot Function Reference
Architecture documentation for the getUserConfigurationResults() function in NoSuchBeanDefinitionFailureAnalyzer.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 6a8c7869_1853_72cd_5bd3_2cdc5cd6a863["getUserConfigurationResults()"] 0926a6fc_c637_4052_331c_69508124c58c["analyze()"] 0926a6fc_c637_4052_331c_69508124c58c -->|calls| 6a8c7869_1853_72cd_5bd3_2cdc5cd6a863 240434a3_def1_ec67_4122_f655c48f2e31["stream()"] 6a8c7869_1853_72cd_5bd3_2cdc5cd6a863 -->|calls| 240434a3_def1_ec67_4122_f655c48f2e31 582aae84_21f0_18b8_4e73_d680a690f984["UserConfigurationResult()"] 6a8c7869_1853_72cd_5bd3_2cdc5cd6a863 -->|calls| 582aae84_21f0_18b8_4e73_d680a690f984 eb505925_b593_5ae2_7269_fc8933d6f1ff["getFactoryMethodMetadata()"] 6a8c7869_1853_72cd_5bd3_2cdc5cd6a863 -->|calls| eb505925_b593_5ae2_7269_fc8933d6f1ff style 6a8c7869_1853_72cd_5bd3_2cdc5cd6a863 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
core/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/diagnostics/analyzer/NoSuchBeanDefinitionFailureAnalyzer.java lines 136–146
private List<UserConfigurationResult> getUserConfigurationResults(NoSuchBeanDefinitionException cause) {
ResolvableType type = cause.getResolvableType();
if (type == null) {
return Collections.emptyList();
}
String[] beanNames = BeanFactoryUtils.beanNamesForTypeIncludingAncestors(this.beanFactory, type);
return Arrays.stream(beanNames)
.map((beanName) -> new UserConfigurationResult(getFactoryMethodMetadata(beanName),
this.beanFactory.getBean(beanName).equals(null)))
.toList();
}
Domain
Subdomains
Calls
- UserConfigurationResult()
- getFactoryMethodMetadata()
- stream()
Called By
Source
Frequently Asked Questions
What does getUserConfigurationResults() do?
getUserConfigurationResults() is a function in the spring-boot codebase.
What does getUserConfigurationResults() call?
getUserConfigurationResults() calls 3 function(s): UserConfigurationResult, getFactoryMethodMetadata, stream.
What calls getUserConfigurationResults()?
getUserConfigurationResults() is called by 1 function(s): analyze.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free