You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@struts.apache.org by bu...@apache.org on 2004/09/02 22:00:13 UTC

DO NOT REPLY [Bug 31023] New: - Action Grouping

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=31023>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=31023

Action Grouping

           Summary: Action Grouping
           Product: Struts
           Version: Unknown
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: Enhancement
          Priority: Other
         Component: Controller
        AssignedTo: dev@struts.apache.org
        ReportedBy: david.durham1@scott.af.mil


A lot of my actions are very similiar.  For instance, I may have a create form
and an edit form.  A lot of times I can reuse the same ActionForm and change the
Input(forwards) etc., but at other times, I reuse some but not all of these
components.  I'd like to see something like:

<action-group name="..." input="..." ...>
   <forward .../> <!-- scope of this group -->
   <action path="/some-path"/> <!-- leave name and input -->
   <action path="/another-path" name="override the default form"> 
                 <!-- same input -->
        <forward .../>  <!-- perhaps override a forward -->
   </action>
   ...
</action-group>

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@struts.apache.org
For additional commands, e-mail: dev-help@struts.apache.org