what is the difference between @include page and @include file
Answers were Sorted based on User's Feedback
Answer / alim atar
<jsp:include page="page.jsp" >
is action which include the output of page.jsp at
dyanamically.Instead of copying all content of page.jsp
Container transalte ,compiles page.jsp separtly and copy
the ouput of page.jsp to current page.It means it's
dyanamic inclusion.
<@include file="page.jsp">
it is directory which copy all content's of page.jsp to
current jsp page and then complete current page is
translated and compiled. It is static inclusion of file
which means copy all source code to current page as it is.
| Is This Answer Correct ? | 24 Yes | 2 No |
Answer / satyanarayana
<jsp:include page="page.jsp" >
is action which include the output of page.jsp at
dyanamically.Instead of copying all content of page.jsp
Container transalte ,compiles page.jsp separtly and copy
the ouput of page.jsp to current page.It means it's
dyanamic inclusion.
In translation it will create only two servlet.
After inclusion if there any changes in source file will
reflect in jsp
it is evaluated with every request.
<@include file="page.jsp">
it is directory which copy all content's of page.jsp to
current jsp page and then complete current page is
translated and compiled. It is static inclusion of file
which means copy all source code to current page as it is.
In translation it will create only one servlet.
After inclusion any change in source file will not reflect
the jsp.
it is evaluated only once at translation time.
| Is This Answer Correct ? | 7 Yes | 2 No |
What is the purpose of static methods and variables?
Which method you will use to create a new file to store some log data. Each time a new log entry is necessary, write string to the file in java ?
what is jndi?
Is vector thread safe in java?
What does yield method of the thread class do?
What is string [] java?
Is it compulsory to have atleast one abstract method in abstract class?
Can we inherit the constructor in a Class?please give one example.
Is age a discrete variable?
What is a concrete classes? Is Java object class is concrete class?
What is an enumeration class?
What is r * in math?