JSP Action | Description | Attribute | Description of Attributes |
---|
|
<jsp:useBean> | Invokes and searches for an existing bean. | id
| Uniquely identifies the instance of the bean. |
class
| Identifies the class from which the bean objects are to be implemented. |
scope
| Defines the scope of the bean. |
beanName
|
Defines the referential name for the bean.
|
|
<jsp:getProperty> | Retrieves the property of a bean. | name
| Defines the name for the bean. |
property
| Defines the property from which the values are to be retrieved. |
|
<jsp:setProperty> | Used to set the property of a bean. | name
| Specifies a name for the bean. |
property
| Defines the property for which values are to be set. |
value
| Defines an explicit value for the bean property. |
param
| Defines the name of the request parameter to be used. |
|
<jsp:forward> | Used to forward a request to a target page. | page
| Specifies the URL of the target page. |
|
<jsp:include> | Includes a file in the current JSP page. | page
| Specifies the URL of the resource to be included. |
flush
| Specifies whether the buffer should be flushed or not. The flush value can be either true or false. |
|
<jsp:param> | Define a parameter to be passed to an included or forwarded page. | name
| Defines the name of the reference parameter. |
value
| Defines the value of the specified parameter. |
|
<jsp:plugin> | Executes a Java applets or a JavaBean. | type
| Defines the type of plug-in to be included. |
code
| Defines the name of the class to be executed by the plug-in. |
codebase
| Defines the path of the code.
|