Please enable JavaScript.
Coggle requires JavaScript to display documents.
JSP (JSP ACTION Tags (jsp:setProperty (sets the value of property in bean…
JSP
-
Scrip
-
Scrip-let :scroll:
In JSP, java code can be written inside the jsp page using the scriptlet tag.
-
directive
directives provide directions and instructions to the container, telling it how to handle certain aspects of the JSP processing
There Are mainly 3 types
<%@ page ... %>
Defines page-dependent attributes, such as scripting language, error page, and buffering requirements.
-
-
-
-
-
-
-
-
<%@ taglib ... %>
Declares a tag library, containing custom actions, used in the page
The JavaServer Pages API allow you to define custom JSP tags that look like HTML or XML tags and a tag library is a set of user-defined tags that implement custom behavior.
JSP Implicit Objects
There are 9 jsp implicit objects. These objects are created by the web container that are available to all the jsp pages.
The available implicit objects are out, request, config, session, application etc.
-