I am using Apache Deltaspike to handle environment specific properties.
Stack: Wildfly 27 final Java 17 Jakarta EE10
An Example of how i use it is listed below
`
@RequestScoped
public class KbMaxConnector {
@Inject
@ConfigProperty(name = "kbmax.url")
@Default
private String url;
@Inject
@ConfigProperty(name = "kbmax.email")
@Default
private String email;
@Inject
@ConfigProperty(name = "kbmax.password")
@Default
private String password;
@Inject
private Logger LOGGER;
public KBMaxModelsQuote getQuote(Integer quoteId) throws ApiException {
LOGGER.debug("Calling KbMax quote api with quoteId: {}, on url:{} user: {} password: {}",quoteId,url,email,password);
QuotesApi quotesApi = new QuotesApi(url, email, password);
return quotesApi.apiQuotesByIdGet(quoteId);
}
}
The values for url, email and password are different for the different environments. This has been working like a charm, for many years.`
However when i now try to move to Jakarta EE10 it has stopped working. Sample stack trace below.
Thankful for input
`
rg.jboss.weld.exceptions.DeploymentException: WELD-001408: Unsatisfied dependencies for type float with qualifiers @Default
at injection point [BackedAnnotatedField] @Inject @ConfigProperty private com.scanreco.cms.control.generator.pdf.MountingPdfGenerator.frontPageMiniImageScale
at com.scanreco.cms.control.generator.pdf.MountingPdfGenerator.frontPageMiniImageScale(MountingPdfGenerator.java:0)
WELD-001475: The following beans match by type, but none have matching qualifiers:
- Producer Method [Float] with qualifiers [@Any @ConfigProperty] declared as [[UnbackedAnnotatedMethod] @Dependent @Produces @ConfigProperty protected io.smallrye.config.inject.ConfigProducer.produceFloatConfigProperty(InjectionPoint)]
at [email protected]//org.jboss.weld.bootstrap.Validator.validateInjectionPointForDeploymentProblems(Validator.java:367)
at [email protected]//org.jboss.weld.bootstrap.Validator.validateInjectionPoint(Validator.java:285)
at [email protected]//org.jboss.weld.bootstrap.Validator.validateGeneralBean(Validator.java:141)
at [email protected]//org.jboss.weld.bootstrap.Validator.validateRIBean(Validator.java:162)
at [email protected]//org.jboss.weld.bootstrap.Validator.validateBean(Validator.java:515)
at [email protected]//org.jboss.weld.bootstrap.ConcurrentValidator$1.doWork(ConcurrentValidator.java:64)
at [email protected]//org.jboss.weld.bootstrap.ConcurrentValidator$1.doWork(ConcurrentValidator.java:62)
at [email protected]//org.jboss.weld.executor.IterativeWorkerTaskFactory$1.call(IterativeWorkerTaskFactory.java:62)
at [email protected]//org.jboss.weld.executor.IterativeWorkerTaskFactory$1.call(IterativeWorkerTaskFactory.java:55)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:833)
at [email protected]//org.jboss.threads.JBossThread.run(JBossThread.java:513)
Exception 8 :
`
Se above
It is the @inject of @Configproperty that fails
SmallRye Config (from your stack trace) implements MicroProfile Config specification, so the @ConfigProperty you need to use is org.eclipse.microprofile.config.inject.ConfigProperty.
I'm not aware of any integration with Deltaspike, but if you need to use it, you need to have something on the classpath that provides injection with the ConfigProperty qualifier coming from Deltaspike. The error says that the only injection point that provides the correct type comes from SmallRye Config.