struts2 跳转到其他命名空间 action

需要通过param进行设置
<result name="list" type="redirectAction">
<param name="namespace">/jsp/base</param>
<param name="actionName">queryList</param>
</result>
namespace 就是你要跳转到的命名空间的名字  actionName 是要跳转到的action

你可能感兴趣的:(struts2,namespace,action)