如何在Struts2 注解 动态方法 调用时用下划线
使用struts2注解进行动态方法调用时默认是用感叹号(!)进行分割,如:test!method.action,
如何把感叹号(!)换成下划线(_),如:test_method.action
这样写不行啊:@Action("testAction_*")。请教高手。
------解决方案--------------------
可以,不过你要自己写个ActionMapper用于解析动态方法调用。struts2默认的ActionMapper是org.apache.struts2.dispatcher.mapper.DefaultActionMapper里面的parseActionName就写死了用"!",所以你自己要用其它符号的话,自己写个类继承DefaultActionMapper重写parseActionName方法.然后在struts.xml里面写上<constant name="struts.mapper.composite" value="你的ActionMapper类路径"/>