如何以静态方法以编程方式将Java CDI 1.1+托管bean注入局部变量?
答案 0 :(得分:42)
注入类C
的实例:
javax.enterprise.inject.spi.CDI.current().select(C.class).get()
这可以在CDI 1.1 +
中找到答案 1 :(得分:13)
例如,使用此实用程序class。你基本上必须获得BeanManager
的实例,而不是从中获取你想要的bean(想象一下像JNDI查找)。
<强>更新强>
您还可以使用CDI 1.1中提供的CDI实用程序类
SomeBean bean = CDI.current().select(SomeBean.class).get();
答案 2 :(得分:7)
@BRS
import javax.enterprise.inject.spi.CDI;
...
IObject iObject = CDI.current().select(IObject.class, new NamedAnnotation("iObject")).get();
使用:
import javax.enterprise.util.AnnotationLiteral;
public class NamedAnnotation extends AnnotationLiteral<Named> implements Named {
private final String value;
public NamedAnnotation(final String value) {
this.value = value;
}
public String value() {
return value;
}
}
答案 3 :(得分:2)
@Petr Mensik建议的链接非常有用。我在我的例子中使用相同的代码。
这是一种在实例方法/静态方法中获取类实例的方法。编码接口总是更好,而不是使用方法中硬编码的类名。
@Named(value = "iObject ")
@RequestScoped
class IObjectImpl implements IObject {.....}
//And in your method
IObject iObject = (IObject) ProgrammaticBeanLookup.lookup("iObject");
.........
//Invoke methods defined in the interface
如果您的应用程序作用域对象的方法需要可能随时间变化的类实例,那么这种bean的程序化查找非常有用。因此,最好提取接口并使用编程bean查找松散耦合。
答案 4 :(得分:1)
您应该包含限定符:
List<Annotation> qualifierList = new ArrayList();
for (Annotation annotation: C.class.getAnnotations()) {
if (annotation.annotationType().isAnnotationPresent(Qualifier.class)) {
qualifierList.add(annotation);
}
}
javax.enterprise.inject.spi.CDI.current()
.select(C.class, qualifierList.toArray(new Annotation[qualifierList.size()])
.get()
答案 5 :(得分:0)