When you need to forward from one JavaServer Page (JSP) to another JSP, here‘s all you have to do:
<jsp:forward page="/faces/success.jsp" />
In the example shown I happen to be working on a small JavaServer Faces (JSF) application, so the URL in this example includes the string /faces/
.
时间: 2024-10-18 16:31:29