python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
@Inject interface with two implementation
I am using Microprofile and I have a question. I have an interface with a method inside:
public interface CheckData extends Serializable{
MyObject retrieveData(String name);
}
This interface is imp...
Prodox21
Votes: 0
Answers: 1
Is bean discovery for @QuarkusTest configurable?
Consider the following Quarkus application:
@ApplicationScoped
@Path("/hello")
public class HelloService {
@Inject
Helper helper;
@GET
@Produces(MediaType.TEXT_PLAIN)
p...
Johannes Hahn
Votes: 0
Answers: 1
Factory using CDI returning capture of type instead of concrete type
I want to create a processor factory that uses CDI to get all available processors. The factory should select the desired processor based on some parameter. So I have my parameter:
public abstract cla...
Martin
Votes: 0
Answers: 1
Class inspection via reflection API. Use of custom annotations
I have done my research before asking but no luck.
I have a StartUp Singleton bean. In this bean I have an @Inject @Any Instance. I loop all the implementations and try to check if the class is annota...
geminal
Votes: 0
Answers: 1