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关键字创建。
1条答案
按热度按时间nbnkbykc1#
是的,您可以,但是定制的示例化对象将缺少spring提供给bean的注入或依赖注入。
当然,符合框架的原则是明智的。也就是说,避免人工摄入“豆子”。