spring-webflow
spring-webflow copied to clipboard
Currently there is no tool that can help you log where you have been in the flow and the current attributes present. This tool should help us achieve it. [SWF-405]
Kris Ramanah opened SWF-405 and commented
Part of this functionality is actually already completed from my research with the flow coverage tool(#169). The additional feature that needs to be added is the path where you get to see all the attributes in the flow( you can expand and get the objects current attribute values).
e.g) Person, Car, Job objects in the flow scope
- Person
-->name="Kris ramanah"
--->Nationality="Mauritian"
+Car
+ Job
Besides this, you will know all the states that have already been covered.
Attachments:
Kris Ramanah commented
1.) org.rar The first attachment contains a java class, a Listener that will create the Log file to trace your flow execution.
use it in a similar manner to the #169(in the -servlet.xml or in a test).
The attributes options are not yet available.
Kris Ramanah commented
The second attachment contains some minor improvements.
Things that still need to be done are, to make sure that the listener is able to create the log file. Becuase currently the directory has to be already present to use it. This is a minor task however.
Kris Ramanah commented
check out the attachments 27/10/2007 for #169. It contains an updated tracing listener and a test to show how it should work.