My question is how to put all the JSP files in WEB-INF/JSP/ in the proper manner?
WEB-INF/JSP/
Is there any configuration for this as the structure I\'m aware of is:
Create an intermediary JSP outside of WEB-INF that includes your JSP.
e.g. your page inside of WEB-INF is ProjectName/WEB-INF/JSP/yourPage2.jsp create a page ProjectName/yourPage1.jsp
Write below code in yourPage1.jsp
<%@ include file="WEB-INF/JSP/yourPage2.jsp" %>