我正在努力做一件简单的事情。在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无论如何都不应该创建代理。我怎样才能使它发挥作用?
答案 0 :(得分:3)
您需要默认构造函数
@ApplicationScoped
public class FilesRepository {
public FilesRepository() {
}
@Inject
public FilesRepository(@FilesRepositoryPath String filesDirectory) {
//Do some stuff
}
}