Springマネージドプロセスエンジンを使用してActiviti5.5を使用してワークフローを機能させようとしていますが、問題が発生しています。
ワークフローに、SpringマネージドBeanに解決されるServiceTaskがあります。次のようになります。
<serviceTask id="springTask1" name="BeanTest" activiti:delegateExpression="${taskBean}"></serviceTask>
コードを介してプロセスを開始していません。プロセスは、activti-restapiまたはフォームを介して開始されます。このタスクが実行されているコンテキストをBean内から取得して、電子メールなどの後のタスクで参照できるプロセス変数を追加できるようにするにはどうすればよいですか。Activiti 5.5に付属している春の例を見てみましたが、私の例が例とどのように違うのかわかりません。春の例が示すのと同じように、JavaDelegateインターフェースを実装しています。
これが私のコードです:
public class GetBeanTest implements JavaDelegate {
private ContactService contactService;
public GetBeanTest() {
super();
}
public String getContactName(String contactName) throws Exception {
String retVal= "unknown";
if(contactService == null){
System.out.println("Bean was null!");
}else{
System.out.println("Bean is valid!");
List<Contact> contacts= contactService.getContacts();
System.out.println("There are " + contacts.size() +" in the contact list.");
for (Contact contact : contacts) {
if(contact.getName().equalsIgnoreCase(contactName)){
System.out.println("Found the contact! " + contactName );
retVal= contact.getEmail();
}
}
}
return retVal;
}
public void setContactService(ContactService contactService) {
this.contactService = contactService;
}
@Override
public void execute(DelegateExecution execution) throws Exception {
System.out.println("+++++++++++++ in execute ++++++++++++++++");
System.out.println("Event Name: " + execution.getEventName());
System.out.println("ID: " + execution.getId());
System.out.println("Process Instance ID: " + execution.getProcessInstanceId());
Set<String> varNames= execution.getVariableNames();
for (String string : varNames) {
System.out.println("Varible Named " + string + " exists");
if(string.equalsIgnoreCase("contactName")){
String contactName= (String) execution.getVariable(string);
getContactName(contactName);
}else{
System.out.println("unable to find contact name.");
}
}
}
}
これが春の構成です(簡潔にするために退屈な部分は省略されています):
<bean id="processEngine" class="org.activiti.spring.ProcessEngineFactoryBean">
<property name="processEngineConfiguration" ref="processEngineConfiguration" />
</bean>
<!--Dao Beans -->
<bean id="contactDao" class="org.psc.database.dao.jpa.ContactDaoImpl"/>
<!-- Service Beans -->
<bean id="repositoryService" factory-bean="processEngine" factory-method="getRepositoryService" />
<bean id="runtimeService" factory-bean="processEngine" factory-method="getRuntimeService" />
<bean id="taskService" factory-bean="processEngine" factory-method="getTaskService" />
<bean id="historyService" factory-bean="processEngine" factory-method="getHistoryService" />
<bean id="managementService" factory-bean="processEngine" factory-method="getManagementService" />
<bean id="identityService" factory-bean="processEngine" factory-method="getIdentityService" />
<bean id="contactService" class="org.psc.service.impl.ContactServiceImpl">
<property name="contactDao" ref="contactDao"/>
</bean>
<bean id="contact" class="org.psc.bpmn.tasks.Contact"/>
<bean id="taskBean" class="org.psc.bpmn.examples.GetBeanTest">
<property name="contactService" ref="contactService"/>
</bean>
worflowを実行すると、エラーが発生します。
06090000ラップされた例外(ステータステンプレートを使用):デリゲート式$ {taskBean}は、インターフェイスorg.activiti.engine.impl.pvm.delegate.ActivityBehaviorまたはインターフェイスorg.activiti.engine.delegate.JavaDelegateの実装に解決されませんでした
いずれか/すべての返信を歓迎します!前もって感謝します。