define global-forwards in struts2

Hi!I am migrating from struts-1 to struts-2. Is there any possible solution where i can define the global-forwards in struts 2?
[141 byte] By [pinipintsa] at [2007-11-27 5:33:00]
# 1

Yes, in your struts.xml file:

Ex:

...

<package name="somepackage" extends="struts-default">

<global-results>

<result name="success">/good.jsp</result>

<result name="input">/form.jsp</result>

<result name="error">/error.jsp</result>

</global-results>

...

Gabriel

belingueresa at 2007-7-12 14:59:32 > top of Java-index,Java Essentials,Java Programming...