构造器Autowired省略
时间: 2024-02-24 10:22:57 浏览: 118
回答: 在Spring Framework 4.3及以后的版本中,如果目标bean只定义了一个构造函数,那么在该构造函数上使用@Autowired注解就不再必要了。然而,如果有多个构造函数可用,至少需要对其中一个构造函数进行注解,以告诉容器应该使用哪一个构造函数。这是Spring目前推荐的构造器注入方式。\[1\]因此,在构造函数上使用@Autowired注解是为了指示Spring容器使用该构造函数进行注入。\[2\]而在Spring3.X版本中,使用@Autowired注解的方式是通过setter方法进行注入。\[3\]所以,构造器注入省略@Autowired注解是因为Spring容器可以根据构造函数的参数类型自动进行依赖注入。
#### 引用[.reference_title]
- *1* *2* *3* [为什么 Spring 的构造器注入不需要 @Autowired 注解?](https://blog.csdn.net/weixin_43715214/article/details/127848186)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control_2,239^v3^insert_chatgpt"}} ] [.reference_item]
[ .reference_list ]
阅读全文