Jesus Ramos Davila

Greenhorn
+ Follow
since Dec 06, 2012
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Jesus Ramos Davila

Hi all, I have a question on which action to call when a request comes Struts

I have the Following

<struts>
<package name="example" namespace="/example" extends="struts-default">

<action name="Hello" >
<result>/example/Hello1.jsp</result>
</action>
<action name="welcome" >
<result>/example/welcome.jsp</result>
</action>
</package>
<package name="example2" namespace="/example" extends="struts-default">


<action name="Hello" >
<result>/example/Hello2.jsp</result>
</action>

</package>
</struts>

My question is If I invoke the action Hello
which of the two action are executed?
11 years ago