我试图将一个具有运行时变量的对象传递给另一个对象。我如何使用 Guice 实现这一目标?我是依赖注入的新手。
我想创建几个 A 对象(它们的数量在运行时决定)和许多使用 A 对象的 B 对象。但首先让我们从他们两个的一个对象开始。
感谢您的帮助。
public interface IA {
String getName();
}
public class A implements IA {
@Getter
protected final String name;
@AssistedInject
A(@Assisted String name) {
this.name = name;
}
}
public interface IAFactory {
IA create(String name);
}
public interface IB {
IA getA();
}
public class B implements IB {
@Getter
protected final IA a;
//...
// some more methods and fields
//...
@Inject
B(IA a) {
this.a = a;
}
}
public class MyModule extends AbstractModule {
@Override
protected void configure() {
install(new FactoryModuleBuilder()
.implement(IA.class, A.class)
.build(IAFactory.class));
bind(IB.class).to(B.class);
}
}
public class Main() {
public static void main(String[] args) throws Exception {
if(args.size < 1) {
throw new IllegalArgumentException("First arg is required");
}
String name = args[0];
Injector injector = Guice.createInjector(new MyModule());
IB b = injector.getInstance(IB.class);
System.out.println(b.getA().getName());
}
}
桃花长相依
相关分类