gpt4 book ai didi

java - 如何在 Guice 中注入(inject)使用辅助注入(inject)创建的对象?

转载 作者:行者123 更新时间:2023-12-02 01:42:38 25 4
gpt4 key购买 nike

我试图将一个具有运行时变量的对象传递到另一个对象中。我如何使用 Guice 来实现这一目标?我是依赖注入(inject)的新手。

我想创建几个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());
}
}

最佳答案

我想你对这一点还不太清楚。那么让我解释一下。

首先,您创建了一个工厂,您将使用它来创建 A 的实例。你这样做是因为 Guice 不知道参数 name 的值.

现在您想要创建 B 的实例这取决于 A 的实例。您要求 Guice 给您一个 B 的实例但是 Guice 将如何创建 B 的实例没有A ?您尚未绑定(bind) A 的任何实例.

因此,要解决此问题,您必须创建 B 的实例手动。

您可以通过以下方式实现它。

首先,您需要一个 B 的工厂

public interface IBFactory {
IB create(String name);
}

然后你需要在你的类中进行以下更改 B

public class B implements IB {  

protected final A a;

@AssistedInject
public B(@Assisted String name, IAFactory iaFactory) {
this.a = iaFactory.create(name);
}
}

现在在您的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());
IBFactory ibFactory = injector.getInstance(IBFactory.class);
IB b = ibFactory.create(name)
System.out.println(b.getA().getName());
}

另外,不要忘记更新您的配置方法并安装 B 工厂。

protected void configure() {
install(new FactoryModuleBuilder()
.implement(IA.class, A.class)
.build(IAFactory.class));

install(new FactoryModuleBuilder()
.implement(IB.class, B.class)
.build(IBFactory.class));
}

注意我路过name在 B 类中。您可以更新 IBFactory 以获取 IA作为辅助参数,然后首先创建 IA 的实异常(exception)部使用IAFactory并传递 IA 的实例至IBFactory创建 IB 的实例

关于java - 如何在 Guice 中注入(inject)使用辅助注入(inject)创建的对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57479803/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com