can someone suggest best java Template engine that externalizes “Common” JSP file (not HTML)
can someone suggest best java Template engine that externalizes “Common.jsp” JSP file (not HTML).
This common JSP file should have header.jsp, footer.jsp, LeftMenu.jsp and should have a placeholder to dynamically inject another JSP which will be decided later.
Now, I would like return a view from Spring 6.x (not spring boot and Spring 5.x), example : return new ModelAndView(“pages/addEmployee.jsp”,”EmployeeBean”,empObject). Now, “addEmployeee.jsp” should be injected to “common.jsp” and should be rendered to UI screen.