标签:can result 错误 input ognl size jsp页面 pre 传递参数
Struts.2.5.5版本在Action配置文件中内有如下result,其中role是Action类中的属性,在配置文件中用到OGNL表达式
<result name="input">/login.jsp?role=${role}</result>
但是这样配置页面提交跳转时会发生以下错误:
org.apache.struts2.dispatcher.HttpParameters cannot be cast to java.util.Map
换成以下配置就没有问题,如果要传递两个参数,中间用&代替&
<result name="input"> <param name="location">/login.jsp</param> <param name="role">${role}</param> </result>
Strut2在Action-Result的配置文件内转到jsp页面时用URL传递参数
标签:can result 错误 input ognl size jsp页面 pre 传递参数
原文地址:http://www.cnblogs.com/foxting/p/6637687.html