What's the difference between an import and include directive,
and also the difference between include directive and
include action?
Answer Posted / vasanth
import directive is used to import any java classes into the jsp. eg : import java.lang.String, whereas include directive is used to include a content of another jsp.
'include' directive is used to include content from a jsp which is static for ever once the jspServlet created for it. The include jsp will not compipled each and every time it gets loaded Header and footer jsps can be included in this method.
If any jsp is included thru include action, the content of the jsp will be compiled and the respective output will be generated and rendered to the including jsp each and every time the including jsp is getting loaded.
| Is This Answer Correct ? | 23 Yes | 4 No |
Post New Answer View All Answers
What is jsp api?
Explain client and server side validation?
Why session is used?
What information is needed to create a tcp socket?
How can I use the results of my method? ea: <%! method (int x) { stuff return y; } %> <% out.println(y); %> how can I make this work? "y" is a variable made during the method.
Can we use jstl in html?
Give uses of object cloning?
When will container initialize multiple jsp/servlet objects?
What is the use of?
Can jsp run without server?
What is the use of requestdispatcher?
What is jsp life cycle?
Differentiate between include directive and include action.
What is client scripting?
Explain what is jsp ?