JSP elements
A JSP page looks like a standard HTML or XML page with additional elements processed by the JSP engine. Typically, these elements create text that is inserted into the resulting document.
JSP elements
- JSP directive passes information to the JSP engine, enclosed in <%@ and %> markers.
- JSP actions or tags are a set of customized XML-style tags for particular actions, e.g. jsp:useBean instantiates the JavaBean class on the server.
- Expression: anything between <%= and %> markers is evaluated by the JSP engine as a Java expression in the server environment.
- Scriptlet: a small script in Java to perform other functions
- Implicit Objects: servlet abstractions