我刚开始一个CDI项目。在这个项目中,一个 Beans2 被注入到一个 Beans1 中。但是 Beans2 有一个创建文件的方法。此方法像这样实例化文件对象:
new File('myPathFile');
因为这个实例化不是由 CDI 容器管理的,所以 Bean2 没有注入到 Beans1 中。我尝试让生产者将文件注入到 Beans2 中,但我是否需要为我将使用的所有 java 基类做同样的事情?
是否有另一种解决方案可以简单地使用不需要注入的类?
豆1:
@Dependant
public class Bean1 implements Serializable {
private @Inject @Bean2Producer Bean2 bean2;
public void someMethod() {
bean2.foo();
}
}
豆2:
@Dependant
public class Bean2 extends AbstractClass implements Serializable {
private @Inject @PathDir String pathDir;
public Bean2(String param1, boolean param2) {
super(param1, param2);
}
public void foo() {
File file = new File(pathDir);
}
}
pathDir 生产者:
@ApplicationScoped
public class ProjectProducer implements Serializable {
@Produces
@PathDir
public String getPathDir() {
try {
return PropsUtils.geetProperties().getProperty(PATH_DIR);
} catch (Exception e) {
e.printStackTrace();
}
}
}
PathDir 注释:
@Qualifier
@Target({FIELD, METHOD, PARAMETER, CONSTRUCTOR, TYPE})
@Retention(RUNTIME)
@Documented
public @interface PathDir {}
在此示例中,如果在 foo() 方法中调用 new File,则 PathDir 不是 Inject。