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 from there instead? And if so, how?