注入一个 Class与杜松子酒

发布于 2024-11-30 07:23:21 字数 561 浏览 0 评论 0原文

有没有办法在 gin 中注入类类型 Class ?我似乎无法让它工作,例如:

class GenericFoo<T> {

  private final Class<T> klass;

  @Inject
  public GenericFoo(Class<T> klass) {
    this.klass = klass;
  }
}

class Bar { }

在某处注入一个实例:

..
@Inject
GenericFoo<Bar> instance;
..

以及一个包含以下内容的 GinModule:

bind(new TypeLiteral<Class<Bar>>() {}).to(Bar.class);

谢谢

Is there a way to inject a class type Class<T> in gin? I can't seem to get it working, for example:

class GenericFoo<T> {

  private final Class<T> klass;

  @Inject
  public GenericFoo(Class<T> klass) {
    this.klass = klass;
  }
}

class Bar { }

with an instance injected somewhere:

..
@Inject
GenericFoo<Bar> instance;
..

and a GinModule containing something along the lines of:

bind(new TypeLiteral<Class<Bar>>() {}).to(Bar.class);

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

小嗲 2024-12-07 07:23:21

这是不可能的。客户端禁止反射,因此用于依赖注入的 GIN 使用延迟绑定。这意味着在编译过程中,GWT 生成的目标实现在您的情况下是未知的。

It's not possible. Reflection is forbidden on the client side, so GIN for dependency injection is using deffered binding. It means that during the compilation, GWT generates target implementations which are unknow in your case.

满意归宿 2024-12-07 07:23:21

如果这是常规的 Guice(而不是 Gin),您可以这样做:

bind(new TypeLiteral<Class<Bar>>(){}).toInstance(Bar.class);

但是 Gin 不支持 .toInstance(...) 绑定。相反,您应该能够使用 Provider@Provides 方法,例如:

@Provides
Class<Bar> providesBarClass() {
  return Bar.class;
}

If this were regular Guice (as opposed to Gin), you could do:

bind(new TypeLiteral<Class<Bar>>(){}).toInstance(Bar.class);

But Gin doesn't support .toInstance(...) bindings. Instead, you should be able to use a Provider or an @Provides method, like:

@Provides
Class<Bar> providesBarClass() {
  return Bar.class;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文