I'm making a Spring MVC web project and I have to have a constant header.
My basic requirement is "We would like to have a header across all screens to show who is logged in to ProjectA."
I've looked at the difference between jsp:include or %@include from here "What is the difference between <jsp:include page = ... > and <%@ include file = ... >?" but then I have also come across tiles as per this example "http://viralpatel.net/blogs/spring-3-mvc-tiles-plugin-tutorial-example-eclipse/"
My question is...what is your opinion on which is the better way to implement this.
side note: I am use to master pages in asp.net and cant seem to find something similar in Java / Spring.