|
|
|
JSP
|
What are JSP Scripting elements?
JSP scripting elements lets to insert Java code into the servlet that will be generated from the current JSP page. There are three forms:
* Expressio |
|
|
JSP
|
What are JSP Tags?
In JSP tags can be divided into 4 different types. These are:
* Directives: In the directives we can import packages, define error handling pages o |
|
|
JSP
|
What are JSP Directives?
A JSP directive affects the overall structure of the servlet class. It usually has the following form:<%@ directive attribute=?value? %> However, you |
|
|
JSP
|
What is JSP custom action?
A user-defined action described in a portable manner by a tag library descriptor and imported into a JSP page by a taglib directive. Custom actions ar |
|
|
JSP
|
What is action class?
The Action Class is part of the Model and is a wrapper around the business logic. The purpose of Action Class is to translate the HttpServletRequest t |
|
|
JSP
|
What is JSP action?
A JSP element that can act on implicit objects and other server-side objects or can define new scripting variables. Actions follow the XML syntax for |
|
|