4 Replies Latest reply on Jul 16, 2013 2:45 AM by lukasz.zdobylak

    Exposing WorkItemHandler as an EJB (3.1) and referencing that work item handler from the BPMN process definition

    xmrk

      JBPM 4.4 allowed us to expose an EJB and reference that <java> node within the JPDL using the attribute ejb-jndi-name (per devguide:http://docs.jboss.com/jbpm/v4/devguide/html_single/#java).  This was remarkable as it allowed deploying new, heavy Activities without the need of cracking open the process engine component itself.

       

      Does jBPM 5.x have any similar capabilities?

       

      The following two options would allow a similar pattern.  I have made an attempt to avoid Spring injection as I haven't found a need for it given the current capabilities of EJB 3.1 / CDI:

       

      #1: Implement a configuration @Singleton internal to the process engine component that exposes the following:

       

      public void addWorkItemHandler(String id, WorkItemHandler workItem);

      public void removeWorkItemHandler(String id);

       

      and delegates the following:

      private Map<String, WorkItemHandlers> workItemHandlers;

       

      Implement an external @Singleton EJB that provides a WorkItemHandler.  That WorkItemHandler is injected with configuration @Singleton and registers itself with that configuration during the @PostConstruct callback.

       

      I used singletons here to easy state consistency (or render it unnecessary).  As such, it doesn't take advantage of pooling.  There may be ways to do something similar with other EJB 3.1 / CDI technologies - I haven't explored some of the other options.

       

      #2: Implement a proxy WorkItemHandler internal to the process engine component that is provided a JNDI name within the parameters Map.  That WorkItemHandler would perform a lookup on the JNDI name and call executeWorkItem on the resolved resource by forwarding the original workItem and manager.  This would allow container managed pooling. 

       

      I originally implemented #1 when I jumped into this issue only to think of #2 later.  I'll likely be refactoring to the #2 pattern if no one has a better option for me.  My hope is that jBPM 5.x already provides a community vetted and exercised solution rather than having to implement my own.

       

      Thanks,

      -mark