我正在尝试做简单的事情。在 CDI 中注入合格的String
(或)。File
所以我有一个限定符:
@Retention(RetentionPolicy.RUNTIME)
@Target({FIELD,METHOD,PARAMETER,TYPE})
@Qualifier
public @interface FilesRepositoryPath {}
我有一个制片人:
public class FilesRepositoryPathProducer {
@Produces
@FilesRepositoryPath
public String getRepositoryDirectory() {
return "path.taken.from.configuration";
}
}
我正在尝试使用它:
@ApplicationScoped
public class FilesRepository {
@Inject
public FilesRepository(@FilesRepositoryPath String filesDirectory) {
//Do some stuff
}
}
但是,WELD 不能实例化这个 bean。我遇到了一个例外:
org.jboss.arquillian.impl.event.FiredEventException: org.jboss.weld.exceptions.UnproxyableResolutionException: WELD-001410 The injection point [field] @Inject private za.co.fnb.commercial.dms.file.FilesRepositoryBeanTest.repo has non-proxyable dependencies
我知道String
是不可代理的,但为什么 WELD 想要创建一个代理?它有@Dependent
范围,所以 AFAIK 它不应该创建代理。我怎样才能让它工作?