2

这是我在 IdentityService 变量 ident 调试时得到的结果:

ident    -> commandService = null
         -> commandService = RetryInterceptor(id=68)

在我的 jbpm.cfg.xml 我有:

<jbpm-configuration>
...
 <import resource="jbpm.identity.cfg.xml" /> 
 ...
</jbpm-configuration>
//I tried using my own IdentityService class, but it didn't work...

然后我有一个使用 IdentityService 的类,称为 simpleProcessService,带有 getter 和 setter。

public class SimpleProcessServiceImpl implements SimpleProcessService{
...
private IdentityService identityService;
...
public IdentityService getIdentityService()
    {

        return identityService;
    }
    public void setIdentityService(IdentityService identityService)
    {

        this.identityService = identityService;
    }

...
}

在我的 applicationContext 进程中,我有:

<?xml version="1.0" encoding="UTF-8"?>

<beans xmlns="http://www.springframework.org/schema/beans"
   ...>


    <bean id="transactionManagerJbpm"
        class="org.springframework.orm.hibernate3.HibernateTransactionManager">
        <property name="sessionFactory" ref="sessionFactoryJbpm" />
        <property name="dataSource" ref="dataSourceJbpm" />
    </bean>



    <bean id="springHelper" class="org.jbpm.pvm.internal.processengine.SpringHelper">
       <property name="jbpmCfg" value="jbpm.cfg.xml"/>
  </bean>
    <bean id="processEngine" factory-bean="springHelper" factory-method="createProcessEngine" />
<!--    <bean id="repositoryService" factory-bean="processEngine" factory-method="getRepositoryService" />-->
<!--    <bean id="executionService" factory-bean="processEngine" factory-method="getExecutionService" />-->
<!--    <bean id="taskService" factory-bean="processEngine" factory-method="getTaskService" />-->

<bean id="identityService" factory-bean="processEngine" factory-method="getIdentityService" />

....

    <bean id="simpleProcessService"
        class="com.playence.platform.services.jbpm.impl.SimpleProcessServiceImpl">
        <property name="repositoryService"  value="#{processEngine.repositoryService}"/>
        <property name="executionService"  value="#{processEngine.executionService}"/>
        <property name="taskService"  value="#{processEngine.taskService}"/>
    <property name="identityService"  value="#{processEngine.IdentityService}"/>
    </bean>
   ...

</beans>

在我的测试文件中,我有:

public void testGroups()
    {
         SimpleProcessService simpleProcessService =(SimpleProcessService)ctx.getBean("simpleProcessService");
         TaskService taskService = simpleProcessService.getTaskService();

         IdentityService ident = simpleProcessService.getIdentityService();

         final int nTasks = 1;
         List<Map<String, Object>> vars= new ArrayList<Map<String, Object>>(nTasks);

         System.out.println("executing process");

         String processKey = "";
         String internalURI = "";
         Map<String,Object> x = new HashMap<String,Object>();
         ProcessInstance processInstance =null;
         List<String> processInstanceIds = new ArrayList<String>();

         //Create nTasks for annotation
         for(int i = 0; i <nTasks ; i++)
         {
                 processKey = Long.toString(System.currentTimeMillis());
                 internalURI = "/videos/test"+i+".flv_" + processKey;

                 x = new HashMap<String,Object>();
                 x.put("internalURI", internalURI);
                 x.put("content", "good");
                 vars.add(i,x);

                 processInstance = simpleProcessService.startProcess("groups", vars.get(i), processKey);
                 processInstanceIds.add(processInstance.getId());

         }


         ident.createGroup("anotacion");

         ident.createUser("silver", "johndoe", "John", "Doe");
         ident.createMembership("silver", "anotacion");

         ident.createUser("david", "joesmoe", "Joe", "Smoe");
         ident.createMembership("david", "anotacion");

         ident.createUser("blanca", "joesmoe", "Joe", "Smoe");
         ident.createMembership("blanca", "anotacion");

....

}

当我尝试创建一个组时抛出异常,似乎虽然 ident 不为空,但它包含空对象......

有任何想法吗?

达马里斯。

4

1 回答 1

1

在我的测试类中,我像这样访问 IdentityService:

ProcessEngine processEngine = new Configuration().buildProcessEngine();
IdentityService id = processEngine.getIdentityService();

在我的 applicationContext-process 中有这个:

<bean id="processEngine" factory-bean="springHelper" factory-method="createProcessEngine" />

并实现了一个基本上调用 IdentityService 方法的类 IdentityServiceImpl:

public class IdentityServiceImpl extends UserServiceImpl implements IdentityService{


    public IdentityServiceImpl()
{
    //Load users and groups from the DB
}

public void createUser(String userId, String givenName, String familyName) {
    //throw new UnsupportedOperationException("Use method TODO name method");
    createUser(userId,givenName,familyName);
}

public void createUser(String userId, String givenName, String familyName,
        String businessEmail) {
    throw new UnsupportedOperationException("Use method TODO name method");
}

public User findUserById(String userId) {
    try{
        GenericUser gU = loadUser(userId);
        UserImpl user = new UserImpl(gU.getUsername(),gU.getFirstname(), gU.getLastname());
        return user;
    }
     catch (ValidationErrors e) {
        e.printStackTrace();
    } catch (ServiceExecutionException e) {
        e.printStackTrace();
    }

    return null;
}

public List<User> findUsers() {
    try {
        List<GenericUser> gUList = listUsers();
        List<User> userList = new ArrayList<User>();

        for(GenericUser gU : gUList)
        {
            userList.add(new UserImpl(gU.getUsername(),gU.getFirstname(), gU.getLastname()));
        }
        //If there are no users return null, otherwise return the users
        if(userList.size() == 0)
            return null;
        else
            return userList;

    } catch (ServiceExecutionException e) {
        e.printStackTrace();
    }

    return null; 
}

public void deleteUser(String userId) {
    throw new UnsupportedOperationException("Use method TODO name method"); 
}

public String createGroup(String groupName) {
    return createGroup(groupName);
    //TODO UserService 
}

public String createGroup(String groupName, String groupType) {
    return createGroup(groupName, groupType);
}

public String createGroup(String groupName, String groupType,
        String parentGroupId) {
    return createGroup(groupName, groupType, parentGroupId);
}

public Group findGroupById(String groupId) {
    return findGroupById(groupId);
}

public List<Group> findGroupsByUserAndGroupType(String userId,
        String groupType) {
    return findGroupsByUserAndGroupType(userId, groupType);
}

public List<Group> findGroupsByUser(String userId) {
    return findGroupsByUser(userId);
}

public List<String> findGroupIdsByUser(String userId) {
    return findGroupIdsByUser(userId);
}

public void deleteGroup(String groupId) {
    deleteGroup(groupId);   
}

public void createMembership(String userId, String groupId) {
    createMembership(userId, groupId);  
}

public void createMembership(String userId, String groupId, String role) {
    createMembership(userId, groupId, role);
}

public void deleteMembership(String userId, String groupId, String role) {
    deleteMembership(userId, groupId, role);        
}

}

在我的 cfg.jpdl.xml 我只有这个:

<?xml version="1.0" encoding="UTF-8"?>
<jbpm-configuration>
  <import resource="jbpm.default.cfg.xml" />
  <import resource="jbpm.tx.spring.cfg.xml" />
  <import resource="jbpm.jpdl.cfg.xml" />
   <import resource="jbpm.bpmn.cfg.xml" />
 <import resource="jbpm.identity.cfg.xml" />
    <import resource="jbpm.businesscalendar.cfg.xml" />
  <import resource="jbpm.console.cfg.xml" />
   <!-- Commented out for dev environment only. -->
  <import resource="jbpm.jobexecutor.cfg.xml" />
   <process-engine-context>
  <repository-service />
  <repository-cache />
  <execution-service />
  <history-service />
  <management-service />
  <identity-service />
  <task-service />

   <command-service name="txRequiredCommandService">
      <skip-interceptor />
      <retry-interceptor />
      <environment-interceptor />
      <standard-transaction-interceptor />
    </command-service>


    <command-service name="newTxRequiredCommandService">
      <retry-interceptor />
      <environment-interceptor policy="requiresNew" />
      <standard-transaction-interceptor />
    </command-service>
    </process-engine-context>


    <transaction-context>
    <!--<object class="com.playence.platform.services.impl.IdentityServiceImpl" /> -->
    <hibernate-session current="true" />
  </transaction-context>


</jbpm-configuration>

我希望它有帮助

达马里斯。

于 2011-05-10T07:30:17.790 回答