Both tags include the content from one page in another.
So what is the exact difference between these two tags?
|
|
|
In one reusable piece of code I use Let the code in the reusable file be :
After running both the JSP files you see the same output and think if there was any difference between the directive and the tag. But if you look at the generated
and this is what you will see for the used tag in the second JSP file :
So now you know that the include directive inserts the source of If you think about it there is an extra performance hit with every action tag ( |
|||||
|
|
There's a huge difference. As has been mentioned, A dynamic include will make a request (using the request dispatcher) that will execute the indicated page and then include the output from the page in the output of the calling page, in place of the The big difference here is that with a dynamic include, the included page will execute in it's own pageContext. And since it's a request, you can send parameters to the page the same way you can send parameters along with any other request. A static include, on the other hand, is just a piece of code that will execute inside the context of the calling page. If you statically include the same file more than once, the code in that file will exist in multiple locations on the calling page so something like
would generate a compiler error (since the same variable can't be declared more than once). |
|||
|
|
|
||||
|
|
|
1) When to use include directive ? To prevent duplication of same output logic across multiple jsp's of the web app ,include mechanism is used ie.,to promote the re-usability of presentation logic include directive is used
when the above instruction is received by the jsp engine,it retrieves the source code of the abc.jsp and copy's the same inline in the current jsp. After copying translation is performed for the current page Simply saying it is static instruction to jsp engine ie., whole source code of "abc.jsp" is copied into the current page 2) When to use include action ? include tag doesn't include the source code of the included page into the current page instead the output generated at run time by the included page is included into the current page response include tag functionality is similar to that of include mechanism of request dispatcher of servlet programming include tag is run-time instruction to jsp engine ie., rather copying whole code into current page a method call is made to "abc.jsp" from current page |
|||
|
|
|
One is a static import (<%=@ include...>"), the other is a dynamic one (jsp:include). It will affect for example the path you gonna have to specify for your included file. A little research on Google will tell you more. |
||||
|
|