Please enable JavaScript.
Coggle requires JavaScript to display documents.
Implicit Objects, JSP - Coggle Diagram
-
JSP
-
Directive
-
-
-
Include Directive
-
include static HTML, scripting elements,
directives, and actions
-
-
Scripting Element
Expressions
<%= expression %>
evaluated and inserted into the output (String), performed at run-time, has full access to information about the request
-
-
Declarations
<%! code %>
inserted into the body of the servlet class, outside of any
existing methods. (Global variable / other method)
Since declarations do not generate any output, they are normally used in conjunction with JSP expressions or scriptlets. - AccessCounts.jsp
-