How can include JSPs file from another folder: My hierarchy is WebContent/WEB-INF/JSPs/..
My JSP file to be include is from /WebContent/WEB-INF/JSPs/body/conte
Your relative path is wrong. Use:
<jsp:include page="../header/navigation.jsp"></jsp:include>
You should use jsp include tag as shown below from any jsp file.
<jsp:include page="/WEB-INF/JSPs/header/navigation.jsp"></jsp:include>
<jsp:include page="/WEB-INF/JSPs/header/navigation.jsp"></jsp:include>