How to prepopulate a form in Struts

By Apache Foundation Viewed: 31797 times Emailed: 201 times Printed: 212 times Bookmark and Share



The simplest way to prepopulate a form is to have an Action whose sole purpose is to populate an ActionForm and forward to the servlet or JSP to render that form back to the client. A separate Action would then be use to process the submitted form fields, by declaring an instance of the same form bean name.

The struts-example example application that is shipped with Struts illustrates this design pattern nicely. Note the following definitions from the struts-config.xml file:

        ...
        <form-beans>
            ...
            <-- Registration form bean -->
            <form-bean name="registrationForm"
                       type="org.apache.struts.webapp.example.RegistrationForm"/>
            ...
        </form-beans>
        ...
        <action-mappings>
            ...
            <-- Edit user registration -->
            <action path="/editRegistration"
                    type="org.apache.struts.webapp.example.EditRegistrationAction"
                    name="registrationForm"
                   scope="request"
                validate="false"/>
            ...
            <-- Save user registration -->
            <action path="/saveRegistration"
                    type="org.apache.struts.webapp.example.SaveRegistrationAction"
                    name="registrationForm"
                   input="registration"
                   scope="request"/>
            ...
        </action-mappings>
    

Note the following features of this approach:

  • Both the /editRegistration and /saveRegistration actions use the same form bean.
  • When the /editRegistration action is entered, Struts will have pre-created an empty form bean instance, and passed it to the execute() method. The setup action is free to preconfigure the values that will be displayed when the form is rendered, simply by setting the corresponding form bean properties.
  • When the setup action completes configuring the properties of the form bean, it should return an ActionForm that points at the page which will display this form. If you are using the Struts JSP tag library, the action attribute on your <html:form> tag will be set to /saveRegistration in order for the form to be submitted to the processing action.
  • Note that the setup action (/editRegistration) turns off validation on the form that is being set up. You will normally want to include this attribute in the configuration of your setup actions, because you are not planning to actually process the results -- you simply want to take advantage of the fact that Struts will precreate a form bean instance of the correct class for you.
  • The processing action (/saveRegistration), on the other hand, leaves out the validate attribute, which defaults to true. This tells Struts to perform the validations associated with this form bean before invoking the processing action at all. If any validation errors have occurred, Struts will forward back to your input page (technically, it forwards back to an ActionForward named "registration" in this case, because the example webapp uses the inputForward attribute in the <controller> element -- see the documentation describing struts-config.xml for more information) instead of calling your processing action.



Comments(1)


1. Thanks for the info

By: info at 2010-01-31 12:17:58

Your name (required):


Your email(required, will not be shown to the public):


Your sites URL (optional):


Your comments:


Enter Code:
The Captcha image

Latest Tutorials

[2008-12-10]Configuring JDBC DataSources in Struts
[2008-12-09]Struts Classes
[2008-09-20]FAQ: Why was reload removed from Struts (since 1.1)?
[2008-09-20]FAQ: Why are my checkboxes not being set from ON to OFF?
[2008-09-20]Using JavaScript to submit a form in Struts
[2008-09-20]How to prepopulate a form in Struts
[2008-09-20]Simple example of using the requiredif Validator rule in Struts
[2008-09-20]Chaining actions in Struts
[2008-09-20]When is the best time to validate input in Struts
[2008-09-17]What is a Plug-in and how to use Java plug-ins with Struts?
[2008-08-13]7 Best Practices of Struts
[2007-10-12]Origin and Architecture of Struts
[2007-10-01]ActionErrors and ActionError in Struts
[2007-10-01]Tutorial on Struts Configuration File – struts-config.xml in Struts
[2007-10-01]Handling multiple buttons in HTML Form in Struts

More Latest News

Most Viewed Articles (in last 30 days)
Tutorial on Struts Configuration File – struts-config.xml in Struts
Struts 1 vs Struts 2
Creating the first application using Struts 2
Handling multiple buttons in HTML Form in Struts
Handling Duplicate Form Submissions in Struts
ActionErrors and ActionError in Struts
DispatchAction in Struts
Configuring JDBC DataSources in Struts
What is Struts? Which Version of Struts to use?
Using Checkbox & Radio Tags, html:select, html:options in Struts Forms
Editing struts-config.xml in a Struts Application
MVC Architecture (Model 2 Architecture)
Using JavaScript to submit a form in Struts
Editing web.xml in a Struts Application
ForwardAction in Struts
Most Emailed Articles (in last 30 days)
Struts 1 vs Struts 2
What is Struts? Which Version of Struts to use?
Tutorial on Struts Configuration File – struts-config.xml in Struts
History of Struts
WebWork 2 is now Apache Struts 2
What is a Model View Controller (MVC) Model?
Writing the first Struts application
Creating the first application using Struts 2
Is Struts the most popular web application framework for Java?
Downloading and installing Struts
Editing web.xml in a Struts Application
Editing struts-config.xml in a Struts Application
Handling multiple buttons in HTML Form in Struts
DispatchAction in Struts
The directories and files of a Struts application