0 Replies Latest reply on Aug 5, 2010 11:45 AM by dev.epm

    Loadin process definition from jboss directory.

    dev.epm

      Hello,

       

      I'm working on a java ear witch contains process definition in /jbpm.

       

      We want to move those process definition in <JBOSS>/server/conf/foo/.

       

      this application uses Spring and we already move some parts of the applicationContext.xml in <JBOSS>/server/conf/foo/ using :

       

      <import resource="classpath*:**/foo/jbpmContext.xml" />

       

      But when we try to do the same with process defintion using

       

      <bean id="workflow" class="org.springmodules.workflow.jbpm31.definition.ProcessDefinitionFactoryBean" >
              <property name="definitionLocation"
                  value="classpath*:**/foo/workflow.xml" />
          </bean>

       

       

      we got a FileNotFoundException...

       

      Is there any way to get this case working ?

       

      Thanks.