使用参数将页面重定向到struts操作操作

时间:2012-09-26 18:24:46

标签: java-ee struts

如何使用子路径将页面重定向到带参数的struts 1操作?

示例:myserver.com/subpath redirect ti myserver.com/myaction.do?method=init

1 个答案:

答案 0 :(得分:0)

你可以试试这个。 使用此短代码在子路径目录中创建index.jsp文件。

<jsp:forward page="myserver.com/myaction.do">
  <jsp:param name="method" value="init"/> 
</jsp:forward>

<% response.sendRedirect("myserver.com/myaction.do?method=init"); %>