[JBoss jBPM] - process go back?
by shiliang0930
<?xml version="1.0" encoding="UTF-8"?>
| <process-definition
| xmlns="" name="test">
| <start-state name="start">
| <transition name="" to="task1"></transition>
| </start-state>
| <task-node name="task1">
| <transition name="" to="task2"></transition>
| </task-node>
| <task-node name="task2">
| <transition name="tr2" to="task1"></transition>
| <transition name="" to="task3"></transition>
| </task-node>
| <end-state name="end1"></end-state>
| <task-node name="task3">
| <transition name="" to="task4"></transition>
| </task-node>
| <task-node name="task4">
| <transition name="" to="end1"></transition>
| </task-node>
| </process-definition>
According to the descrition of the processdefinition,i want to go back from task2 to task1,but during the process , a new instance is created and the task of this instance is one of the task in the TaskNode i will go back to not the old task instance?
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4073869#4073869
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4073869
18Â years, 11Â months
[JBossCache] - Re: findAll(null) working?
by BruceSpringfield
Hi Ben,
My JUnit test only has tests for attaching, detaching, and removing.
I didn't have any tests for findAll() or findAll(null). With Jason Greene's previous post, the usage of findAll() is clear and I see that I was trying to attach multiple objects to a single id and then using findAll() and not getting the results I expected. So now findAll() and findAll(null) are working as expected.
Except now, I cannot for some reason access the objects in the Map that is returned by findAll() with regular String keys? I have to get the keySet of the Map, then use the actual keys from the keySet to access the objects in the map. Seems to be some type of formatting or type issue.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4073856#4073856
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4073856
18Â years, 11Â months