what i m trying to do, spring displays a form, when click on submit it should display the same form but added attribute value in request object.i tried but its not working hope any one drag out error from it.
<entry key=”/successLogin.htm”>
<ref bean=”searchForm” />
</entry>
——————————————————————-
<bean id=”searchForm”
class=”com.rim.admin.controlers.SearchFormControle r”>
<property name=”sessionForm”>
<value>true</value>
</property>
<property name=”commandName”>
<value>searchForm</value>
</property>
<property name=”commandClass”>
<value>com.rim.admin.model.Search</value>
</property>
<property name=”validator”>
<ref bean=”searchFormValidator” />
</property>
<property name=”formView”>
<value>search1</value> <!– its my velocity file resolver is already setteled no worries about this–>
</property>
<property name=”successView”>
<value>successLogin.htm</value> <!– again comming on same form–>
</property>
</bean>
————————————————————–
SearchFormControler
——————–
public ModelAndView onSubmit(
HttpServletRequest request,
HttpServletResponse response,
Object command,
BindException errors) throws ServletException, Exception {
Search form = (Search)command;
ArrayList list = new ArrayList();
TestTO o = new TestTO();
o.setEmail(“sdf@gmail.com”);
o.setName(“fsdfsdf”);
list.add(o);
return new ModelAndView(getSuccessView(),”lists”,o);
}
——————- VM —————————
#foreach($list in $lists)
$list.getEmail()
#end
————————————————–
it does not display any data any idea ?