[Solved] What is the role of the action mapper in Struts 2?
The role of ActionMapper interface in Struts2 framework is to extract mapping from the request’s URL. When given an HttpServletRequest, the ActionMapper may return null if no action invocation request matches, or it may return an ActionMapping class that describes an action invocation for the framework to try. You can read more about this feature … Read more