is any way how to include JSP file from local stored folder, under the WEB-INF?
I have in my config.properties defined absolute path ${externalFolder} to folder which contains external jsp files, controller mapped to /page and jsp page page.jsp which is in WEB-INF/jsp/ directory.
In this file page.jsp I want to call:
WEB-INF/jsp/page.jsp
<%@page session="true" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<html>
...
<body>
<jsp:include page="${externalFolder}/someJspFile.jsp" />
</body>
</html>
Thank you for help.
WEB-INFis a protected resource. It will have to be accessed by calling/WEB-INF/someJspFile.jspfrom aServletContext. - Buhake Sindi