我们可以同时使用new关键字创建bean和对象吗?

ygya80vv  于 2021-07-16  发布在  Java
关注(0)|答案(1)|浏览(286)
public class UserInterface{
public static void main(String args[]){

ApplicationContext applicationContext = new AnnotationConfigApplicationContext(SpringConfig.class);

AbcClass abc = applicationContext.getBean(AbcClassImpl.class); 

AbcClass cde = new AbcClassImpl();
}
}

只是想知道如果我们已经为这个创建了bean,是否可以使用new关键字创建。

nbnkbykc

nbnkbykc1#

是的,您可以,但是定制的示例化对象将缺少spring提供给bean的注入或依赖注入。
当然,符合框架的原则是明智的。也就是说,避免人工摄入“豆子”。

相关问题