Getting Action Mapping in JSP
One can use "org.apache.struts.action.mapping.instance" to get the action mapping in JSP:
import org.apache.struts.config.ActionConfig;
ActionConfig mapping = (ActionConfig)request.getAttribute("org.apache.struts.action.mapping.instance");
Form name will be mapping.getName()
import org.apache.struts.config.ActionConfig;
ActionConfig mapping = (ActionConfig)request.getAttribute("org.apache.struts.action.mapping.instance");
Form name will be mapping.getName()
Comments
Post a Comment