Is there a way I can call/embedd another jsp application within my current application?
As in, say in my application I have some content and at a particular place I would like to show another application.
I will not be able to include the include directive, because the other jsp page is in another application..
Is this possible? if so, would anyone be able to tell me how I can achieve this?
Is there a way I can call/embedd another jsp application within my current application?
Share
You can only include its HTML output by JSTL
<c:import>.You only need to ensure that it ends in valid HTML. I.e. no nested
<html><html>tags. If you have no control over its output, then using a HTML<iframe>is your best bet.