Hi

So, say that my container is helpfully running multiple threads and thus
calling into my service on multiple threads. What happens when there is
request-specific stuff to inject?

In particular, for JAX-RS:


   @Context
   private org.apache.cxf.jaxrs.ext.MessageContext messageContext;


If you service bean is a singleton then a thread-safe proxy will be injected early on, during the service initialization. If it is a prototype then a new MessageContext instance will be created during every request

cheers, Sergey

Reply via email to