| Article: |
Using JSF | |
| Subject: | Front Controller | |
| Date: | 2003-09-09 11:21:27 | |
| From: | anonymous2 | |
|
Is there a way to hide JSP pages under WEB-INF? Maybe I missed something, but JSF seems to be quite JSP centric.
|
||
Showing messages 1 through 2 of 2.
-
Front Controller
2003-12-02 12:19:11 anonymous2 [View]
-
Front Controller
2003-12-02 12:18:38 anonymous2 [View]
Use
req.getRequestDispatcher("WEB-INF/protectedpage.jsp).forward()
to send the client to a JSP under WEB-INF.
The protectedpage.jsp file will not be accessable via a standard get.



req.getRequestDispatcher("WEB-INF/protectedpage.jsp").forward()
to send the client to a JSP under WEB-INF.
The protectedpage.jsp file will not be accessable via a standard get.