在applicationContext.xml中使用Spring @Autowired和bean声明

前端之家收集整理的这篇文章主要介绍了在applicationContext.xml中使用Spring @Autowired和bean声明前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

嗨,我对春天比较新.我正在使用注释.
我怀疑开始我上课了

public class MyClassA{

@Autowired
private MyClassB variableClassB;

// more code here
.
.
.

在我的applicationContext.xml中

我的问题是我需要在applicationContext.xml中添加bean声明,如下所示

或者是否足以拥有@Autowired注释

最佳答案
不它不是.

如果MyClassB注释了@Component,@ Service,@ Repository或@Controller等注释,则组件扫描将为bean工厂中的类创建一个bean.

如果您之前没有使用任何这些注释,则需要手动创建bean

例如:

@Component
public class MyClassB{
}
原文链接:https://www.f2er.com/spring/431654.html

猜你在找的Spring相关文章