Please enable JavaScript.
Coggle requires JavaScript to display documents.
JSP Mindmap - Coggle Diagram
JSP Mindmap
-
Directives
JSP directives are the elements of a JSP source code that guide the web container on how to translate the JSP page into it’s respective servlet
<%@ directive attribute="value" %> is the general form of the JSP directive and it affects the overall structure of the servlet
types of directive
Page
import classes,
customize the servlet superclass
-
-
Action
Actions involving beans
UseBean
<jsp:useBean id=“name” class=“fully_qualified_pathname” scope=“{page|request|session|application}” />
-
-
-
-
-