Below is a line from a Struts config file. What do 'comp/*/*/*' and {1} mean?
<action name="comp/*/*/*" class="com.fxoa.comp.{1}.action.extjs.{2}Action" method="{3}">
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
They are called as
Wildcardsmappings when your application size growsWildcardscan be used to combine similar mappings into one more generic mapping.What you are showing in your example is also known as wildcard mapping.It can be done at 2 levels
Read official documentation for details
Wildcard-Mappings
WildcardMethod