Spring源码学习~循环依赖(面试必问系列(1),java程序设计教程第三版课后答案
修改后版本: 修改人: 修改日期: 2020/11/16 14:03 修改内容:
*/
@Component
public class B {
//@Autowired
A a;
public B() {
a = new A();
System.out.println(“B class is create”);
}
}
注册类A、B
package com.example.config;
import com.example.bean.B;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import com.example.bean.A;
/**
AppConfiguration
共有 0 条评论