Struts2 : action跳转时带参数跳转

在实现action跳转到另一个action时,需要携带参数,可以直接在struts.xml配置文件中对应的跳转action的地方加上,参数的配置,用ognl表达式,可以从session中取值。
如果要传递两个参数,中间用&代替&(xml中&要转义)
Eg:


        check_checkpage.action?eid=${#session.eid}
        groupuser_show.action?WorkGroupId=${#session.WorkGroupId}&ExamId=${#session.ExamId}
        check_checkBackPage.action?successtag=1
        /WEB-INF/artexam/printGroupUser.jsp
        /WEB-INF/artexam/UserInfo.jsp
    

你可能感兴趣的:(Struts2 : action跳转时带参数跳转)