I need to include a page from an external application in one of my pages.
Now this page expects a get parameter.
So the url would be something like /x/y?z=123.
I was thinking:
<jsp:include page="/x/y?z=${zParam}"/>
But that doesn’t seem to do the trick?
Any advice?
Try JSTL’s
<c:import url="..">