JSP页面定向
时间:2006-04-24 来源:cncore
JSP页面主要有以下方法:
<meta http-equiv="refresh" content="10;http://www.abbapp.com">
refresh 是 属性方法,10是时间,即10秒后进行refresh,地址是http://www.abbapp.com
<jsp:forward page="相对地址"/>
如下: a.jsp
<jsp:forward page="b.jsp" />
b.jsp
<html>
<body>
afdafdjksafjkdskajf
</body>
</html>
地址栏敲入http://localhost:port/a.jsp后,地址栏不变,内容部分显示的是b.jsp的内容.用jsp:forward的时候,page的url只能是同意域即同一虚拟主机下的.
<%response.sendRedirect("url");%>
这个url既可以是相对(同一应用部署下),也可以是绝对地址如 http://www.abbapp.com
struct中返回页面时可以用
response.sendRecirect(""); 还可以用 mapping.findForward("url");
url是在struct-config-x.xml中 给相对的Action配置的forward的name;
相关阅读 更多 +