I have Spring MVC application with JSP as view technology. I have included some js, css, taglibs in header part of each and every JSP.
Please note that I have declared taglibs at top of my JSP file above html tag. Can I move all these commons files(.js, .css, taglibs etc) into one file and then include this single file into all my JSPs ?
Considering all above points what will be the best option ?
Please advise.