Please enable JavaScript.
Coggle requires JavaScript to display documents.
JSP - Coggle Diagram
JSP
IMPLICIT OBJECTS
-
-
-
-
Java objects that the JSP Container makes available to the developers in each page and the developer can call them directly without being explicitly declared.
ACTIONS
-
dynamically insert a file,
-
forward the user to another page,
-
-
ADVANTAGE
-
JSP needs no compilation,
-
-
DIRECTIVES [2 Main Type]
- affects the overall structure of the servlet
class.
JSP include Directive:
- include file at the time JSP page is translated into servlet.
- specify URL that relative to the home directory of the Web Server
- Example: <%@ include file="randomPage.jsp"%> end
JSP Page Directive:
- define one or more case-sensitive attributes - import attribute allows to appear multiple times.
- Example: <%@ page import= "java.util.*"%>