gpt4 book ai didi

java - spring boot Autowiring 和在 Autowiring 类上使用 new 关键字的区别?

转载 作者:行者123 更新时间:2023-12-04 00:52:42 25 4
gpt4 key购买 nike

@Autowired
private EmployeeService employeeService;

对比

@Autowired
private EmployeeService employeeService = new EmployeeService();

在 Autowiring 类上使用 new EmployeeService() 与仅使用 new EmployeeService() 是否不同?

最佳答案

如果注入(inject)了用于 @Autowired 的 bean,它将覆盖您创建的对象。但是,如果没有创建 bean,您将有一个回退(在这种情况下 new EmployeeService()。这可能对测试有帮助,但它是一种反模式,因为通常您只想要两种行为之一.

关于java - spring boot Autowiring 和在 Autowiring 类上使用 new 关键字的区别?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65288885/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com