4 Replies Latest reply on Sep 18, 2019 11:30 AM by luc.feys6

    Wildfly 10.1.0.Final + JMS + CDI +

    sverker.sverker.abrahamsson.com

      I have an application where a dispatcher sends out jobs to a number of workers which are REST microservices. I have a Singleton bean which instantiate a controller bean for each worker, right now the workers are set statically by startup properties but it is intended that it should be possible to start and stop workers dynamically. Each controller bean is instantiated with CDI.current().select(WorkerTask.class).get() and then started by ManagedExecutorService. In the bean there is an injected JMSContext and JMSQueue which is used to create a JMSConsumer in the thread.

      The controller bean then first checks that the worker it is controlling is healthy and then fetches one job from the JMS queue, monitors the states of this job as the worker processes it and when done it will fetch the next job (or block until a job is available) .

       

      This has worked fine up to Wildfly 10.0.0.Final, but with 10.1.0.Final I get the following Exception when creating the consumer:

       

      17:51:06,718 ERROR [com.limetransit.fileencoder.dispatcher.WorkerTask] (WorkerTask http://localhost:9090/) WELD-001303: No active contexts for scope type javax.enterprise.context.RequestScoped: org.jboss.weld.context.ContextNotActiveException: WELD-001303: No active contexts for scope type javax.enterprise.context.RequestScoped

              at org.jboss.weld.manager.BeanManagerImpl.getContext(BeanManagerImpl.java:689)

              at org.jboss.weld.bean.ContextualInstanceStrategy$DefaultContextualInstanceStrategy.getIfExists(ContextualInstanceStrategy.java:90)

              at org.jboss.weld.bean.ContextualInstanceStrategy$CachingContextualInstanceStrategy.getIfExists(ContextualInstanceStrategy.java:165)

              at org.jboss.weld.bean.ContextualInstance.getIfExists(ContextualInstance.java:63)

              at org.jboss.weld.bean.proxy.ContextBeanInstance.getInstance(ContextBeanInstance.java:83)

              at org.jboss.weld.bean.proxy.ProxyMethodHandler.invoke(ProxyMethodHandler.java:99)

              at org.wildfly.extension.messaging.activemq.deployment.injection.RequestedJMSContext$Proxy$_$$_WeldClientProxy.getContext(Unknown Source)

              at org.wildfly.extension.messaging.activemq.deployment.injection.InjectedJMSContext.getDelegate(InjectedJMSContext.java:91)

              at org.wildfly.extension.messaging.activemq.deployment.injection.JMSContextWrapper.createConsumer(JMSContextWrapper.java:187)

              at com.limetransit.fileencoder.dispatcher.WorkerTask.run(WorkerTask.java:99)

              at org.jboss.as.ee.concurrent.ControlPointUtils$ControlledRunnable.run(ControlPointUtils.java:105)

              at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)

              at java.util.concurrent.FutureTask.run(FutureTask.java:266)

              at org.glassfish.enterprise.concurrent.internal.ManagedFutureTask.run(ManagedFutureTask.java:141)

              at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)

              at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)

              at java.lang.Thread.run(Thread.java:745)

              at org.glassfish.enterprise.concurrent.ManagedThreadFactoryImpl$ManagedThread.run(ManagedThreadFactoryImpl.java:250)

       

      The Singleton bean which instantiates the controller bean is @ApplicationScoped, the controller bean is @Dependant (I've tried also with @ApplicationScoped but that didn't change anything). What to do to solve this issue, or work around it?

       

      Simplified the worker bean looks like this:

      @Dependent
      public class WorkerTask implements Runnable {
          @Inject
          private JMSContext jmsContext;

          @Resource(lookup="java:/jms/queue/JobQueue")
          private Queue jobQueue;

          public void run() {
            running = true;
            JMSConsumer consumer = jmsContext.createConsumer(jobQueue);  // Exception is thrown here
            while(running) {
                   <Poll worker for health status>
                   Message message = consumer.receive();
                   Job job = message.getBody(Job.class);
                   <Submit job to worker, monitor state until done>
            }
         }
      }

      And it is instantiated from the @Singleton like this:

      @Singleton 
      @Startup
      @ApplicationScoped
      public class WorkerController {
           @Resource
           private ManagedExecutorService managedExecutorService;

           @PostConstruct
           private void startup() {
               for(String workerUrl: workerUrls) {
                   WorkerTask workerTask = CDI.current().select(WorkerTask.class).get();
                   managedExecutorService.submit(workerTask);
               }
           }
      }