Introduction to JSP tags JSP Directives
INTRODUCTION TO JSP TAGS
I n this lesson we will learn about the various tags available in JSP with suitable examples. In JSP tags can be devided into 4 different types. These are:
Directives
In the
INTRODUCTION TO JSP TAGS
In
this lesson we will learn about the various tags available in JSP with
suitable examples. In JSP tags can be devided into 4 different types.
These are:
Directives
In the directives we can import packages, define error handling pages or the
session information of the JSP page.
Declarations
This tag is used for defining the functions and variables to be used in the
JSP.
Scriplets
In this tag we can insert any amount of valid java code and these codes are
placed in _jspService method by the JSP engine.
Expressions
We can use this tag to output any data on the generated page. These data are
automatically converted to string and printed on the output stream.
Now we will examine each tags in details with examples.
DIRECTIVES
Syntax of JSP directives is:
<%@directive attribute="value"
%>
Where directive may be:
page: page is used to provide the information about it.
Example: <%@page
language="java" %>
include: include is used to include a file in the JSP page.
Example: <%@
include file="/header.jsp" %>
taglib: taglib is used to use the custom tags in the JSP pages
(custom tags allows us to defined our own tags).
Example: <%@
taglib uri="tlds/taglib.tld" prefix="mytag"
%>
and attribute may be:
language="java"
This tells the server that the page is using the java language.
Current JSP specification supports only java language.
Example: <%@page
language="java" %>
extends="mypackage.myclass"
This attribute is used when we want to extend any class. We can
use comma(,) to import more than one packages.
Example: <%@page
language="java" import="java.sql.*,mypackage.myclass"
%>
session="true"
When this value is true session data is available to the JSP page
otherwise not. By default this value is true.
Example: <%@page
language="java" session="true" %>
errorPage="error.jsp"
errorPage is used to handle the un-handled exceptions in the page.
Example: <%@page
language="java" session="true" errorPage="error.jsp"
%>
contentType="text/html;charset=ISO-8859-1"
Use this attribute to set the mime type and character set of the
JSP.
Example: <%@page
language="java" session="true" contentType="text/html;charset=ISO-8859-1"
%>
I need a way to transform a valid url value given as a text string in to an anchor tag in a <c:forEach loop inside a jsp page.
<td><b><a href="<c:url value="${col.value}" />"></a></b></td>
The above doesn't work. Can some one help ?.
Thanks
Posted by Raj Kairam on Wednesday, 12.3.08 @ 16:03pm | #82341
In the section about JSP directives in your article Introduction to JSP tags there a number of attributes missing in the syntax given by you. There is also no indication that the given list is not complete. This can be misleading!
Posted by Gopal krishan on Thursday, 10.2.08 @ 16:50pm | #80842
Well my question is as we al know that jsp is converted in servlet and then it is compiled and executed and we get the output but can we see this servlet which is converted from jsp .
If yes then how.
I am eagerly waiting for the answer.
Posted by SANJAY SHUKLA on Thursday, 10.18.07 @ 01:52am | #34305