Probably Ill explain my classes and their purpose a little more.
Currently, I have 2 jsps (view1 and view2) which are part of a flow.
I have beans (view1Action and view2Action) defined for...
Type: Posts; User: avaj01; Keyword(s):
Probably Ill explain my classes and their purpose a little more.
Currently, I have 2 jsps (view1 and view2) which are part of a flow.
I have beans (view1Action and view2Action) defined for...
Thanks for the reply.
I see your point. But "view2Action" is just a bean that makes use of the standard org.springframework.webflow.action.FormAction as defined in my flow-context :
<bean...
BTW, In my Multiaction class, Ive tried displaying my formobject in Sysout
System.out.println("form object:"+view2Form );
and in jsp
<c:out value="${View2}"/>
Jut to know if they are...
I know that it should be straightforward, but need some help on pointing out what I might have been missing out.
I basically have 2 pages workflow with the 2nd page loading some data before...
is there any workaround for this at the moment? Im also encoutering the same problem.
hi fjfernandez,
Was able to resolve my problem too. problem was Im using link which didnt submit the form. Thats why everything was null. Should have spotted that immediately.
Thanks!
anyone have an idea why we're getting null when gtting the form values?
Im trying to to create a simple webflow module and seem to be stuck at this problem. My form attributes doesnt seem to bind with the FormObject I define.
I have the following defined:
...
Got it. Thanks guys.
Well, not really. I just want to load some constant data that will be used thru out the application. I plan to use hibernate's caching facility for this.
I guess my question is, how can I make...
I would want to use Spring with hibernate caching in my application. My goal is to use hibernate to load my objects upon server startup thru a startup servlet I configured in web.xml.
Can I use...