public ActionBean getActionBean(ActionBeanContext context, String path) throws StripesServletException {
Class<? extends ActionBean> beanClass = getActionBeanType(path);
ActionBean bean;
if (beanClass == null) {
throw new ActionBeanNotFoundException(path, getUrlBindingFactory().getPathMap());
}
String bindingPath = getUrlBinding(beanClass);
try {
HttpServletRequest request = context.getRequest();