Please enable JavaScript.
Coggle requires JavaScript to display documents.
JSP - Coggle Diagram
JSP
Implicit Objects
-
-
-
-
-
-
-
-
- Java objects that the JSP Container makes available to developers and
- The developers can call them directly without being explicitly declared.
- Also called pre-defined variables.
-
-
Action
-
dynamically insert a file, reuse JavaBeans components, forward the user to another page, or generate HTML for the Java plugin.
-
Standard actions
-
-
Involving beans
<jsp:useBean id=“name” class=“fully_qualified_pathname”
scope=“{page|request|session|application}” />
-
-
-
Directives
Page
-
-
Lets you do things like import classes,
customize the servlet superclass, and the like
-
-