which situation you use static include and dynamic include
in jsp?

Answers were Sorted based on User's Feedback



which situation you use static include and dynamic include in jsp?..

Answer / sreekanth madamanchi

This is Static include.
<%@ include file="header.jsp" %>
1.the file includes static text. i.e if we use the static
include, it will merge the contents of included jsp
(header.jsp) with main jsp at compile time. and the size of
the main jsp will increase. some times it may have problem,
because the maximum size of the jsp is 64kb.
2.if the file is changed,the JSP engine may not recompile
the JSP

This is Dynamic include.
<jsp:include page="header.jsp">
1.The file includes Dynamically. i.e at run time.
2.If the included file (header.jsp) is changed,the JSP
engine recompile the included JSP, because it will include
at run time.By using this the jsp size also not increased.
For Example
Static include (<%@ include file="header.jsp" %>) like our
#include (C++)
Dynamic include (<jsp:include page="header.jsp"> ) like our
import (JAVA)

Is This Answer Correct ?    46 Yes 3 No

which situation you use static include and dynamic include in jsp?..

Answer / anilkumar_iq

when same request and response objects are shared by
multiple JSP's in dynamic include

In static include internally,it will merge the contents(eg:
one.jsp and two.jsp) and creates a jsp as(one_two.jsp)then
generates the output of both the jsp's

Is This Answer Correct ?    15 Yes 4 No

Post New Answer

More JSP Interview Questions

How run jsp program in netbeans?

0 Answers  


Is the session object always created on the jsp page, is it possible to disable its creation?

0 Answers  


Why jsp is better over static html also explain lifecycle of a jsp?

0 Answers  


How can we stop errors on display in a jsp page?

0 Answers  


Which implicit object is not available in normal jsp pages?

0 Answers  






Give the use of exception object.

0 Answers  


How does a jsp function?

0 Answers  


How can I enable session tracking for jsp pages if the browser has disabled cookies?

0 Answers  


Where do I create jsp in eclipse?

0 Answers  


hi friends...i created sessions in my login page i can able to create a session but after loging out again i can able access the pages by its addresses. i think u may got problem if possible post me small example for login with sessions including database

1 Answers  


How to connect jsp and java file?

0 Answers  


What's the difference between an import and include directive, and also the difference between include directive and include action?

1 Answers  


Categories