0

我知道我可以使用特定注释进行 Guice 多重绑定,如下所示

Multibinder.newSetBinder(binder(), Bound.class, Annotation.class);

但是我可以对不仅带有注释Annotation.class而且还具有特定值的类进行更具体的多重绑定,例如@Annotation("type1")

4

1 回答 1

3

在这种情况下,您可以实现注释并将其实例传递给 Multibinder 静态工厂方法:

  static class YourAnnotationImpl implements YourAnnotation {

    private final String value;


    YourAnnotationImpl(String value) {
      this.value = value;
    }

    @Override public String value() {
      return value;
    }

    @Override public Class<? extends Annotation> annotationType() {
      return YourAnnotation.class;
    }

    @Override public String toString() {
      return "@" + YourAnnotation.class.getName() + "(value=" + value + ")";
    }

    @Override public boolean equals(Object o) {
      return o instanceof YourAnnotationImpl
          && ((YourAnnotationImpl) o).value().equals(value());
    }

    @Override public int hashCode() {
      return (127 * "value".hashCode()) ^ value.hashCode();
    }

  }
   ...

   Multibinder.newSetBinder(binder(), Bound.class, new YourAnnotationImpl("type1");
于 2013-07-10T21:15:11.817 回答