Struts - DynaValidatorForm

R

Ron

Hallo,

ich habe das Problem, dass wenn ich versuche in eine DynaActionForm
eine Collection zu schreiben und später in der JSP auszulesen, dass
die Bean im scope nicht gefunden wird. Analog schreibe ich einen
String und es funktioniert!

PreAction:

ArrayList answerArrList = new ArrayList();
answerArrList.add(........

((DynaActionForm)form).set("answers",((Collection)answerArrList));
((DynaActionForm)form).set("question","TextTextText");



struts-config.xml:

<form-bean
name="questionActionForm"
type="org.apache.struts.validator.DynaValidatorForm">
<form-property
name="answerArrList"
type="java.util.Collection">
</form-property>
<form-property
name="question"
type="java.lang.String">
</form-property>
</form-bean>


JSP:

<logic:iterate id="answer" name="answerArrList">....... -->
funktioniert nicht: kann Bean im scope nicht finden

<bean:write name="questionActionForm" property="question"/> .... -->
funktioniert ohne Probleme in der gleichen JSP!!!!!

Hat jemand eine Idee???

Danke für eure Antworten!
 
R

Ron

So geht's:

<bean:define id="xxx" name="formName" property="yyy" type="java.util.Collection"/>

in die JSP setzen!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,982
Messages
2,570,185
Members
46,736
Latest member
AdolphBig6

Latest Threads

Top