在春天, 我有一个控制器“BaseController”,并具有服务类的引用
@Controller
class BaseController{
@Autowired
private BaseService baseService;
//......
}
和xml中的bean定义为
<context:annotation-config />
<bean name="baseService" class="com.test.service.BaseService" />
这里我没有使用“autowire”属性,因此没有将autowire类型定义为“byType”或“byName”。
现在发生什么类型的自动装配。