What does the path in an action of the following action-mapping mean .Does it specify the jsp page from which a request is coming (search.jsp)?
<action-mappings>
<action path="/search"
type="SearchAction"
name="searchForm"
scope="request"
validate="true"
input="/search.jsp">
</action>
</action-mappings>
The path refers to the name of the action you call from your HTML or jsp file.
For eg –
The corresponding action mapping will be something like –
Check out this link for a complete example.