this kind of problem should be solved by program himself.
I use JRun Studio for more than 3 years, and I love the feature very much, it’s really useful and reduce time.
I just need a F12 hotkey to begin preview and run. Don’t worry about the session and workflow. If you provide the funtion, I am sure the programer will have his own way to use the function.
Yes, the jsp run result depends on session and workflow.
my work around is:
in development stage, I will bypass the authticate or other session related check using the following code:
// production stage
// String userId = session.getAttribute(“sessionUser”);
// debug stage
String userId = “SomeOne”;
It is dirty but it works.
The Best solution is to let the IDE ‘remember’ request information for each page. programer can change the defult request values for a certain page.
If the page belongs to a work flow, then no way to work around.
Actually, Please don’t treat the feature as a very strick feature and don’t try to handle all the things that programer himself should handle.