如果我有两个类,例如:
Class A {
public String importantValue = "stringvalue";
@Autowire
public B b;
}
@Component
@Scope("prototype");
Class B {
// This should be set automatically
// from IOC Container upon injection.
public String importantValueFromA;
}
这甚至可能吗?一旦 B 类被注入到 A 中,它应该自动设置 B 中的值。