In my struts2
based application i need to include working template (a jsp file).I have designed the layout and has everything in place.only part of application which will change throughout the application is working area.
On my index.jsp
file i need to include menu which are database driven and for which i need to hit the action
one way which is coming to my mind is like using
<META HTTP-EQUIV="Refresh" CONTENT="0;URL=welcome.action">
in the head section of my index.jsp
,but i don't want to have redirect at first place in my application.
is there any other way to achieve this?