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)
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
CDI - inject a bean from dependency into class in module
I have the following UserService bean, part of module A:
@Stateless
@TransactionAttribute(TransactionAttributeType.REQUIRES_NEW)
public class UserService {
...
}
I want to programatically inject ...
j.a
Votes: 0
Answers: 0
Is there any way to retrieve the session id from a CDI interceptor?
I have created a standard CDI (WELD) interceptor to log method calls:
@MyInterceptorBinding
@Interceptor
public class MyInterceptor implements Serializable {
@AroundInvoke
public Object inter...
Leonardo Scommegna
Votes: 0
Answers: 1