Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

When validation fails, we typically forward back to the same server page, so that the errors can be presented, and so that the client can fix the problem and resubmit the form. Of course, aside from the errors, we may also need to present rich controls, like drop down lists.

If we try to populate rich controls in an Action method, like input or execute, and validation fails, the method will not be invoked, and the controls are not populated. Two alternative ways to populate controls are the Preparable interface and the action tag.

Preparable interface

Instead of populating controls in an Action method, implement the Preparable interface, and use a prepare method instead. The prepare method is called before validation, so it validation fails, we still have a chance to populate controls (or whatever)Populating the Action properties and validation are both handled by Interceptors. To ensure that the Action properties are populated regardless of whether validation passes or fails, in the Action's Interceptor Stack, ensure that the prepare} Interceptor comes before the {{validation Interceptor.

Code Block
xml
xml
<saf<s:checkboxlist
 name="selectedOptions"
 list="options"
 listKey="id"
 listValue="name" />
The default stack does place the prepare Interceptor before the validation Inteceptor
Code Block
JavajavaJava
java
public void prepare() throws Exception {
      // populate the options property list with options
      // that are supposed to be checked.
   }
Info

(tick) If a custom stack is being used, be sure to put the Prepare Interceptor before the Validation Interceptor.

action tag

Another solution is to use the action tag to execute an Action in place.

One way to use this tag is to put a control on a "snippet" JSP that is rendered as a result of an Action that does nothing but create the object that populates the control. The action tag sets "executeresult=true", then control markup will be "included" into the page (like a tile), after the action executes.

In effect, exectuteResult actions can be used like a tag that can run its own action before emitting the markup.

Code Block
xml
xml
1title:Input.jsp

<%@ taglib prefix="s" uri="/struts-tags" %>
<s:form>
   <s:action name="languages" namespace="/ActionTag" executeResult="true"/>
   <s:action name="colors" namespace="/ActionTag" executeResult="true"/>
   <ssubmit/>
</s::form>
Code Block
xml
xml
1title:Languages.jsp

<%@ taglib prefix="s" uri="/struts-tags" %>
<s:select
       tooltip="Choose Your Favorite Language"
       label="Favorite Language"
       list="favoriteLanguages"
       name="favoriteLanguage"
       listKey="key"
       listValue="description"
       emptyOption="true"
       headerKey="None"
       headerValue="None"/>
Code Block
java
java
1title:Languages.java (execute)

   public String execute() {
       favoriteLanguages.add(new Select.Language("EnglishKey",
"English Language"));
       favoriteLanguages.add(new Select.Language("FrenchKey", "French
Language"));
       favoriteLanguages.add(new Select.Language("SpanishKey",
"Spanish Language"));
       return SUCCESS;
   }
Code Block
xml
xml
1title:struts.xml (Input, Languages)

       <action name="Input">
           <result type="plaintext">Input.jsp</result>
       </action>

       <action name="Languages" class="app.Languages">
           <result>Languages.jsp</result>
       </action>

The advantage being that the "Languages" action could be dropped in whereever the "Languages" control is needed, and that the Action for the form doesn't need to know how to populate the Languages control.

Now, the Action is going to be hit every time the page is rendered, but so long as you are using a caching data access layer, like IBATIS or Hibernate, it will end up being a memory-to-memory transfer, rather than a database access.