As per attached image, I have main jsp page which name is (Index.jsp) and I am including another jsp file inside it whose name is (Menu.jsp).
<jsp:include page="menu.jsp" flush="true"></jsp:include>
At the start of the application, I am setting few variable value to Menu.jsp and i need to access those value in Index.jsp.
Is there any way we can do that ?