Jonas Eichhorst

Greenhorn
+ Follow
since Nov 22, 2010
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Jonas Eichhorst

Hi all,

I have 4 forms which together compose an entity-adding action (each part is validated differently and individually, therefore, they are split). Now I have set up everything so that I go from tile to tile via the action and everything seems to work well so far.

However, each of the actions points to the same class and the information (instance variables) are always only passed from the one step to the next but then lost when the following form is loaded.

My struts.xml looks like this:



And basically everything seems to be almost great, only problem is that the steps should be:
1.EditVeranstaltungsreiheStammdaten
2.EditVeranstaltungsreiheDozent
3.EditVeranstaltungsreiheGruppe
4.EditVeranstaltungsreiheRaeume

And the information in the instance of de.nak.stundenplandb.action.EditVeranstaltungsreihenlisteAction (if I look via Debug) is only passed from 1 to 2, then in 2 some stuff is added and then when I move to form three the settings from form one are lost.

Any ideas how I can ensure that all these actions use the same instance of de.nak.stundenplandb.action.EditVeranstaltungsreihenlisteAction?

Thank you very much in advance!
13 years ago