WebSphere Application Server - Express supports IBM extensions and additions to the JSP specification.
Note: Use of these tags are not recommended unless you are migrating your JSPs from WebSphere Application Server Version 3.5. Use of the IBM extension tags in your JSP files diminishes their potential to be ported to a non-WebSphere application server.
Extensions can be categorized as either:
Syntax for variable data
Put variable fields in JSP files and have servlets and beans dynamically replace the variables with
values from a database when the JSP output is returned to the browser.
Syntax for database access
Add a database connection to a Web page and then use that connection to query or update the
database. You can provide the user ID and password for the database connection at request time, or you
can hard code the user ID and password within the JSP file.
See the following topics for more information about the IBM extensions and their syntax:
<tsx:dbconnect>
This tag specifies information that is needed to connect to a database.<tsx:userid> and <tsx:passwd>
Use these tags as variables for user ID and password input.<tsx:dbquery>
You can use this tag to query a database and return the results.<tsx:dbmodify>
This tag allows you to add records to a database.<tsx:repeat>
You can use this tag to iterate through a the results set of a database query.<tsx:getProperty>
This tag gets the value of a bean to display in the JSP file.
Keep in mind that using the IBM extension tags in your JSP files diminishes their potential to be ported to a non-WebSphere application server.