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 we disable el?
How we can include the result of another page in jsp?
How can we create jsp custom tags?
What’s the difference between forward and sendredirect?
What is action tag in jsp?
How do you import the packages in the JSP?
14 Answers HCL, Hyderabad Central University,
How many messaging models do jms provide for and what are they?
What is jsp life cycle?
What are the implicit, internal objects and methods on the jsp page?
What is jstl used for?
Explain the various scope values for <jsp:useBean> tag.
What is jstl?