vote up 0 vote down star
1

this is my jsp:

<s:form action="InsertSurvey">
        <table>
            <tr>
                <td> ID Survey: </td><td><s:textfield name="SurveyValues.survey.idtextsurvey"/> </td>
                <td> Tipo Survey: </td><td><s:select list="typeSurvey"/> </td>

            </tr>
        </table>
    </s:form>

and this is my action without get/set

public class InsertSurveyAction extends ActionSupport implements Preparable {

protected SurveyValues surveyValues;
protected List typeSurvey;
protected String typeSurveySelected;

public InsertSurveyAction() {

}

@Override
public String execute() throws Exception {
  return SUCCESS;
}

public void prepare() throws Exception {
    typeSurvey = new ArrayList();
    typeSurvey.add("Multi");
    typeSurvey.add("Singolo");
}

Why I have this problem? *

tag 'select', field 'list': The requested list key 'typeSurvey' could not be resolved as a collection/array/map/enumeration/iterator type. Example: people or people.{name} - [unknown location]

I have the last version of struts2.

flag

25% accept rate

4 Answers

vote up 0 vote down

I just added the gettes and setters.. I don't write on code example, but there are... The problem persist..

link|flag
vote up 0 vote down

Hi !

The thing is you did not declare a getter for the typeSurvey List, try with public List<String> getTypeSurvey() { return typeSurvey; }

link|flag
vote up 0 vote down
<struts>
<constant name="struts.devMode" value="true"/>
<constant name="struts.enable.DynamicMethodInvocation" value="false" />



<package name="default"  extends="struts-default">

    <action name="InsertSurvey" class="it.survey.actions.InsertSurveyAction">
        <result name="success">/InsertSurvey_step1.jsp</result>
    </action>

</package>

link|flag
vote up 0 vote down

Hi Luigi !

Can you post your struts.xml declaring your action mapping ? I tried your code it works fine for me.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.