I’m used to work in PHP. There I would make a Page Class with methods for writing menus headers and footers and call those methods from my script. This way was able to easily change the content of the main menu, editing just the Page Class code.
Now I’m trying JSP and JSTL and I can’t find any solution for this problem other than include. Is there a better way to do this?
It seems that jsp:include is the best way to solve this.