How to forward from one JSP to another JSP

 

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/.

原文地址:https://www.cnblogs.com/hephec/p/4586845.html