WebContent « Folder « JSP-Servlet Q&A





1. Possible to jsp:include a jsp from another package instead of from WebContent/jsp folder?    stackoverflow.com

Due to a design decision, our project contains JSP files that include other JSP files like so:

<jsp:include page="/jsp/controls/InputControl.jsp"/>
These JSP files exist under the WebContent/jsp folder of the project. Is it possible to ...