hi guys and girls. i want to call 2 views within one controller in spring with java. for example
this.controller.view('header');
this.controller.view('body');
this.controller.view('footer');
how can i do that? or it is possible in spring? or can you suggest any other way to do it?
and can i call a view inside a view.
for example in view/login.jsp
,
<table><tr><td>
<jsp>this.controller.view('login_form')</jsp>
</td></tr></table>
yeah, all the codes i wrote there are not valid jsp language, but that is the concept i want to do in this project.