What's the difference between an import and include directive,
and also the difference between include directive and
include action?
Answer / 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 |
How can I override the jspinit() and jspdestroy() methods within a jsp page?
How can we stop errors on display in a jsp page?
What is an expression in jsp?
How to get value from java to jsp page?
Why jsp is faster than servlet?
Can we use jsp implicit objects in a method defined in jsp declaration?
Plz any body tell me why use jsp over servlet.what is the benefit of jsp over servlet?
4 Answers Future Generali, HCL,
Can we write a class inside Jsp?
Explain client-side and server-side validation.
What do you know about jsp expression language (jsp expression language – el)?
How do I mix jsp and ssi #include?
How can we handle exceptions thrown by jsp service method?