getNamesOfBeansIgnoredByType() — spring-boot Function Reference
Architecture documentation for the getNamesOfBeansIgnoredByType() function in OnBeanCondition.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD a8777dcb_6175_c7a5_a8f5_e58c30b2081d["getNamesOfBeansIgnoredByType()"] e8d44fa6_45ad_6d14_6468_53ed18c907e0["getMatchingBeans()"] e8d44fa6_45ad_6d14_6468_53ed18c907e0 -->|calls| a8777dcb_6175_c7a5_a8f5_e58c30b2081d 8361880d_08d6_782b_4fbe_15d5a4ea3680["getBeanDefinitionsForType()"] a8777dcb_6175_c7a5_a8f5_e58c30b2081d -->|calls| 8361880d_08d6_782b_4fbe_15d5a4ea3680 4b480321_97ee_f10d_835f_edb9a372f6bc["addAll()"] a8777dcb_6175_c7a5_a8f5_e58c30b2081d -->|calls| 4b480321_97ee_f10d_835f_edb9a372f6bc style a8777dcb_6175_c7a5_a8f5_e58c30b2081d fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
core/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/condition/OnBeanCondition.java lines 309–319
private Set<String> getNamesOfBeansIgnoredByType(ListableBeanFactory beanFactory, boolean considerHierarchy,
Set<BeanType> ignoredTypes, Set<BeanType> parameterizedContainers) {
Set<String> result = null;
for (BeanType ignoredType : ignoredTypes) {
Collection<String> ignoredNames = getBeanDefinitionsForType(beanFactory, considerHierarchy, ignoredType,
parameterizedContainers)
.keySet();
result = addAll(result, ignoredNames);
}
return (result != null) ? result : Collections.emptySet();
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does getNamesOfBeansIgnoredByType() do?
getNamesOfBeansIgnoredByType() is a function in the spring-boot codebase.
What does getNamesOfBeansIgnoredByType() call?
getNamesOfBeansIgnoredByType() calls 2 function(s): addAll, getBeanDefinitionsForType.
What calls getNamesOfBeansIgnoredByType()?
getNamesOfBeansIgnoredByType() is called by 1 function(s): getMatchingBeans.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free