得到错误,不确定为什么,因为我在两个模块中都使用了beans.xml
。
WELD-001408类型[String]的不满足依赖关系,注入点[[参数1] [构造函数] @Inject public com.comp.alert.EmailAlertHandler(String,String)]
SystemProperty.java:
@Qualifier
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.PARAMETER, ElementType.FIELD, ElementType.METHOD, ElementType.TYPE})
public @interface SystemProperty {
@Nonbinding String value();
}
EmailAlertHandler.java(仅包含使用@Systemproperty的部分代码:
@Email
@Stateless
public class EmailAlertHandler implements AlertHandler {
@Inject
public EmailAlertHandler(@SystemProperty("min.email.from") String emailFrom,
@SystemProperty("min.email.to") String emailTo) {
this.emailFrom = emailFrom;
this.emailTo = emailTo;
}
@Override
public void sendAlert(Alert alert) {
//body omitted
}
}
在EmailAlertHandler模块中定义的beans.xml:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/beans_1_0.xsd"/>
在SystemProperty模块中定义的beans.xml:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/beans_1_0.xsd"/>
EmailAlertHandler在这里注入。在另一个类中调用sendAlertAsync方法基本上启动了功能:
@Singleton
@Startup
public class AlertManager {
@Inject @Email
private AlertHandler emailAlertHandler;
@Asynchronous
public void sendAlertAsync(Alert alert) {
// Handle alert via email
emailAlertHandler.sendAlert(alert);
}
}
基本上我已经在类似的未满足/缺失的依赖性错误上发现的所有解决方案都指向配置beans.xml但是没有解决任何问题。
答案 0 :(得分:1)
看起来没有什么能产生这些字符串。
你有生产者吗?
您可以尝试:
public class PropertyProducer {
@Produces
public String createProperty(InjectionPoint injectionPoint) {
String value =injectionPoint.getAnnotation(SystemProperty.class).value();
return System.getProperty(value);
}
}