struts 2.5之后默认不支持通配符了,要使用通配符的话,需要加上
“<constant name="struts.enable.DynamicMethodInvocation" value="true"/>”
还有“<global-allowed-methods>regex:.*</global-allowed-methods>”
或者在action中加上
“<allowed-methods>regex:.*</allowed-methods>”
struts 2.5之后默认不支持通配符了,要使用通配符的话,需要加上
“<constant name="struts.enable.DynamicMethodInvocation" value="true"/>”
还有“<global-allowed-methods>regex:.*</global-allowed-methods>”
或者在action中加上
“<allowed-methods>regex:.*</allowed-methods>”