• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Ron McLeod
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

use action without actionMapping

 
Ranch Hand
Posts: 139
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
normally I associate an action with a form-bean in the action-mapping,
can I just call an action without providing an action-mapping? or can I associate an action with a path but without a bean associated?
thanks in advance
 
jonathan Greens
Ranch Hand
Posts: 139
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Sorry I found out that I can use an action-mapping without specifying a form-bean... so my question is answered. another question arises:

can I use global-forward in a local forward's path?
for example:
<global-forwards >
<forward name="logon" path="/Login.jsp"/>

</global-forwards>

<action path="/view" type="com.xxxxxx">
<forward name="success" path="/logon"/>
</action>

the way it is now, it doesn't work,
does the forward path needs to be the actual path to the file name?
thanks in advance
 
Ranch Hand
Posts: 415
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The path of the forward atg should be either another action r a jsp.it cant look for anothe forward
 
reply
    Bookmark Topic Watch Topic
  • New Topic