嗨,我对春天比较新.我正在使用注释.
我怀疑开始我上课了
如
public class MyClassA{
@Autowired
private MyClassB variableClassB;
// more code here
.
.
.
在我的applicationContext.xml中
我的问题是我需要在applicationContext.xml中添加bean声明,如下所示
或者是否足以拥有@Autowired注释
最佳答案
不它不是.
原文链接:https://www.f2er.com/spring/431654.html如果MyClassB注释了@Component,@ Service,@ Repository或@Controller等注释,则组件扫描将为bean工厂中的类创建一个bean.
如果您之前没有使用任何这些注释,则需要手动创建bean
例如:
@Component
public class MyClassB{
}