public class Main {
public static void main(String[] args) {
Car car = new Car(17);
car.run();
}
}
static class FrameWork {
private Bottom bottom;
public FrameWork(int size) {
bottom = new Bottom(size);
}
}
static class Bottom {
private Tire tire;
public Bottom(int size) {
tire = new Tire(size);
System.out.println("Bottom...init..");
}
}
static class Tire {
public int size;
private String color;
public Tire(int size) {
this.size = size;
System.out.println("tire....init...size:"+size);
}
}
public class Main {
public static void main(String[] args) {
Tire tire= new Tire(17,"red");
Bottom bottom = new Bottom(tire);
Framework framework = new Framework(bottom);
Car car = new Car(framework);
car.run();
}
}
@Configuration
public class BeanConfig {
@Bean("u1")
public User user1() {
User user = new User();
user.setName("zhangsan");
user.setAge(18);
return user;
}
}
@Controller //把这个对象交给Spring进行管理
public class UserController {
@Autowired
private UserService userService;
public void hello() {
System.out.println("Hello,Controller");
userService.hello();
}
}
@Service
public class UserService {
public void hello() {
System.out.println("Hello,UserService...");
}
}
构造⽅法注⼊
复制代码
@Controller
public class UserController2 {
//注⼊⽅法2: 构造⽅法
private UserService userService;
public UserController2() {
}
@Autowired
public UserController2(UserService userService) {
this.userService = userService;
}
public void hi(){
System.out.println("hi,UserController2...");
userService.hello();
}
}