首页 > 代码库 > Struts2的动态调用action方法
Struts2的动态调用action方法
动态调用action方法,是指用 action!method 格式的请求来请求后台的逻辑处理
前提条件:在struts.xml或者struts.properties中配置
struts.enable.DynamicMethodInvocation常量为true ,否则动态调用不可用
查看源码: 在org.apache.struts2.dispatcher.mapper.DefaultActionMapper中
protected ActionMapping parseActionName(ActionMapping mapping) { if(mapping.getName() == null) return null; //该参数即struts.enable.DynamicMethodInvocation常量的值, //因此设为true,才可以用动态调用请求action if(allowDynamicMethodCalls) { String name = mapping.getName(); int exclamation = name.lastIndexOf("!"); if(exclamation != -1) { mapping.setName(name.substring(0, exclamation)); mapping.setMethod(name.substring(exclamation + 1)); } } return mapping; }
注意:通配符格式的action请求与参数struts.enable.DynamicMethodInvocation的值无关
Struts2的动态调用action方法
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。