当前位置:网站首页>Phenomenon analysis when Autowired annotation is used for list
Phenomenon analysis when Autowired annotation is used for list
2022-07-07 05:18:00 【kgduu】
1、 The phenomenon
In a processing chain , There are many. AbstractHandler, One is the collection of management processing chains CompositeHandler.Handler1,Handler2, CompositeHandler yes AbstractHandler Implementation class of . among CompositeHandler Implemented as a
@Component
@Slf4j
public class CompositeHandler extends AbstractHandler {
@Autowired
private List<AbstractHandler> handlers;
@Override
public int handlerOrder() {
// TODO Auto-generated method stub
return 0;
}
@PostConstruct
public void init() {
log.info("handlers:{}", handlers);
}
Log output handlers Only 2 individual , Namely Handler1, Handler2. Why is this phenomenon ?
2、 analysis
DefaultListableBeanFactory Resolving dependencies List when , Obtain candidates that meet the specified type beanNames, Will filter with the current beanName equal .
边栏推荐
- Batch normalization (Standardization) processing
- 最全常用高数公式
- ThinkPHP Association preload with
- DBSync新增对MongoDB、ES的支持
- c语言神经网络基本代码大全及其含义
- The sooner you understand the four rules of life, the more blessed you will be
- 数字化创新驱动指南
- Simulate thread communication
- Understand common network i/o models
- U++4 interface learning notes
猜你喜欢
[opencv] image morphological operation opencv marks the positions of different connected domains
在米家、欧瑞博、苹果HomeKit趋势下,智汀如何从中脱颖而出?
How to choose an offer and what factors should be considered
AOSP ~binder communication principle (I) - Overview
qt 简单布局 盒子模型 加弹簧
数字化如何影响工作流程自动化
《二》标签
y58.第三章 Kubernetes从入门到精通 -- 持续集成与部署(三一)
Basic knowledge of road loss of 3GPP channel model
Batch normalization (Standardization) processing
随机推荐
DBSync新增对MongoDB、ES的支持
[QT] custom control loading
利用OPNET进行网络仿真时网络层协议(以QoS为例)的使用、配置及注意点
[PHP SPL notes]
LabVIEW在打开一个新的引用,提示内存已满
漏电继电器JOLX-GS62零序孔径Φ100
Leetcode minimum difference in student scores
Harmonyos fourth training
【opencv】图像形态学操作-opencv标记不同连通域的位置
QSlider of QT control style series (I)
数字化如何影响工作流程自动化
2. Overview of securities investment funds
As we media, what websites are there to download video clips for free?
一个酷酷的“幽灵”控制台工具
AOSP ~Binder 通信原理 (一) - 概要
DJ-ZBS2漏电继电器
记录一次压测经验总结
DBSync新增对MongoDB、ES的支持
《五》表格
线程池的创建与使用