facebook

Spring velocity form reload issue!!!!!

  1. MyEclipse IDE
  2.  > 
  3. Off Topic
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #271700 Reply

    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 ?

    #271714 Reply

    Riyad Kalla
    Member

    You may want to cross-post this to the Spring Forums as someone there may be better able to answer your question.

Viewing 2 posts - 1 through 2 (of 2 total)
Reply To: Spring velocity form reload issue!!!!!

You must be logged in to post in the forum log in