Possible to jsp:include a jsp from another package instead of from WebContent/jsp folder?
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 move the JSP files to another package (i.e. com.company.project.components.jsp) and include them fr...