我知道我可以使用特定注释执行Guice multibind,如下所示
Multibinder.newSetBinder(binder(), Bound.class, Annotation.class);
但是,我是否可以对不仅使用Annotation.class
注释但具有特定值的类执行更具体的多重绑定,例如@Annotation("type1")
?
答案 0 :(得分: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");