JSP Overview
JSP Overview
JSP Overview
TECHNOLOGY
JavaServer Pages (JSP) technology enables you to mix regular, static HTML with
dynamically generated content. You simply write the regular HTML in the nor-
mal manner, using familiar Web-page-building tools. You then enclose the code
for the dynamic parts in special tags, most of which start with <% and end with %>.
For example, Listing 10.1 (Figure 10–1) presents a very small JSP page that uses a
request parameter to display the title of a book. Notice that the listing is mostly stan-
dard HTML; the dynamic code consists entirely of the half line shown in bold in the
listing.
© Prentice Hall and Sun Microsystems Press. Personal use only. 303
J2EE training from the author: http://courses.coreservlets.com/
You can think of servlets as Java code with HTML inside; you can think of JSP as
HTML with Java code inside. Now, neither servlets nor JSP pages are restricted to
using HTML, but they usually do, and this over-simplified description is a common
way to view the technologies.
Now, despite the large apparent differences between JSP pages and servlets,
behind the scenes they are the same thing. JSP pages are translated into servlets, the
servlets are compiled, and at request time it is the compiled servlets that execute. So,
writing JSP pages is really just another way of writing servlets.
Even though servlets and JSP pages are equivalent behind the scenes, they are not
equally useful in all situations. Separating the static HTML from the dynamic con-
tent provides a number of benefits over servlets alone, and the approach used in
JavaServer Pages offers several advantages over competing technologies. This chap-
ter explains the reasons for using JSP, discusses its benefits, dispels some misconcep-
tions, shows you how to install and execute JSP pages, and summarizes the JSP syntax
discussed in the rest of the book.
“Hey!” you say, “You just spent several chapters extolling the virtues of servlets. I like
servlets. Servlets are convenient to write and efficient to execute. They make it sim-
ple to read request parameters and to set up custom code to handle missing and mal-
formed data. They can easily make use of HTTP request headers and can flexibly
manipulate HTTP response data. They can customize their behavior based on cook-
ies, track user-specific data with the session-tracking API, and talk to relational data-
bases with JDBC. What more do I need?”
Well, this is a good point. Servlets are indeed useful, and JSP by no means makes
them obsolete. However, look at the list of topics for which servlets excel. They are all
tasks related to programming or data processing. But servlets are not so good at presen-
tation. Servlets have the following deficiencies when it comes to generating the output:
JSP pages are translated into servlets. So, fundamentally, any task JSP pages can per-
form could also be accomplished by servlets. However, this underlying equivalence
does not mean that servlets and JSP pages are equally appropriate in all scenarios.
The issue is not the power of the technology, it is the convenience, productivity, and
maintainability of one or the other. After all, anything you can do on a particular com-
puter platform in the Java programming language you could also do in assembly lan-
guage. But it still matters which you choose.
JSP provides the following benefits over servlets alone:
Now, this discussion is not to say that you should stop using servlets and use only
JSP instead. By no means. Almost all projects will use both. For some requests in
your project, you will use servlets. For others, you will use JSP. For still others, you
will combine them with the MVC architecture (Chapter 15). You want the appropri-
ate tool for the job, and servlets, by themselves, do not complete your toolkit.
A number of years ago, the lead author of this book (Marty) was invited to attend a
small 20-person industry roundtable discussion on software technology. Sitting in the
seat next to Marty was James Gosling, inventor of the Java programming language.
Sitting several seats away was a high-level manager from a very large software com-
pany in Redmond, Washington. During the discussion, the moderator brought up the
subject of Jini, which at that time was a new Java technology. The moderator asked
the manager what he thought of it, and the manager responded that it was too early
to tell, but that it seemed to be an excellent idea. He went on to say that they would
keep an eye on it, and if it seemed to be catching on, they would follow his company’s
usual “embrace and extend” strategy. At this point, Gosling lightheartedly interjected
“You mean disgrace and distend.”
Now, the grievance that Gosling was airing was that he felt that this company
would take technology from other companies and suborn it for their own purposes.
But guess what? The shoe is on the other foot here. The Java community did not
invent the idea of designing pages as a mixture of static HTML and dynamic code
marked with special tags. For example, ColdFusion did it years earlier. Even ASP (a
product from the very software company of the aforementioned manager) popular-
ized this approach before JSP came along and decided to jump on the bandwagon. In
fact, JSP not only adopted the general idea, it even used many of the same special
tags as ASP did.
So, the question becomes: why use JSP instead of one of these other technologies?
Our first response is that we are not arguing that everyone should. Several of those
other technologies are quite good and are reasonable options in some situations. In
other situations, however, JSP is clearly better. Here are a few of the reasons.
First, JSP is portable to multiple operating systems and Web servers; you aren’t
locked into deploying on Windows and IIS. Although the core .NET platform runs
on a few non-Windows platforms, the ASP part does not. You cannot expect to
deploy serious ASP.NET applications on multiple servers and operating systems. For
some applications, this difference does not matter. For others, it matters greatly.
Second, for some applications the choice of the underlying language matters
greatly. For example, although .NET’s C# language is very well designed and is simi-
lar to Java, fewer programmers are familiar with either the core C# syntax or the
many auxiliary libraries. In addition, many developers still use the original version of
ASP. With this version, JSP has a clear advantage for the dynamic code. With JSP, the
dynamic part is written in Java, not VBScript or another ASP-specific language, so
JSP is more powerful and better suited to complex applications that require reusable
components.
You could make the same argument when comparing JSP to the previous version
of ColdFusion; with JSP you can use Java for the “real code” and are not tied to a par-
ticular server product. However, the current release of ColdFusion is within the con-
text of a J2EE server, allowing developers to easily mix ColdFusion and servlet/JSP
code.
Versus PHP
PHP (a recursive acronym for “PHP: Hypertext Preprocessor”) is a free, open-source,
HTML-embedded scripting language that is somewhat similar to both ASP and JSP.
One advantage of JSP is that the dynamic part is written in Java, which already has an
extensive API for networking, database access, distributed objects, and the like,
whereas PHP requires learning an entirely new, less widely used language. A second
advantage is that JSP is much more widely supported by tool and server vendors
than is PHP.
Does this mean that you can just learn JSP and forget about servlets? Absolutely
not! JSP developers need to know servlets for four reasons:
1. JSP pages get translated into servlets. You can’t understand how JSP
works without understanding servlets.
2. JSP consists of static HTML, special-purpose JSP tags, and Java code.
What kind of Java code? Servlet code! You can’t write that code if you
don’t understand servlet programming.
3. Some tasks are better accomplished by servlets than by JSP. JSP is
good at generating pages that consist of large sections of fairly well
structured HTML or other character data. Servlets are better for gen-
erating binary data, building pages with highly variable structure, and
performing tasks (such as redirection) that involve little or no output.
4. Some tasks are better accomplished by a combination of servlets and
JSP than by either servlets or JSP alone. See Chapter 15 for details.
Versus JavaScript
JavaScript, which is completely distinct from the Java programming language, is
normally used to dynamically generate HTML on the client, building parts of the
Web page as the browser loads the document. This is a useful capability and does
not normally overlap with the capabilities of JSP (which runs only on the server).
JSP pages still include SCRIPT tags for JavaScript, just as normal HTML pages do.
In fact, JSP can even be used to dynamically generate the JavaScript that will be
sent to the client. So, JavaScript is not a competing technology; it is a complemen-
tary one.
It is also possible to use JavaScript on the server, most notably on Sun ONE (for-
merly iPlanet), IIS, and BroadVision servers. However, Java is more powerful, flexi-
ble, reliable, and portable.
portability, integration, industry support, and technical features. The arguments for
JSP alternatives have focused almost exclusively on the technical features part. But
portability, standardization, and integration are also very important. For example, as
discussed in Section 2.11, the servlet and JSP specifications define a standard direc-
tory structure for Web applications and provide standard files (.war files) for deploy-
ing Web applications. All JSP-compatible servers must support these standards.
Filters (Volume 2) can be set up to apply to any number of servlets or JSP pages, but
not to nonstandard resources. The same goes for Web application security settings
(see Volume 2).
Besides, the tremendous industry support for JSP and servlet technology results
in improvements that mitigate many of the criticisms of JSP. For example, the JSP
Standard Tag Library (Volume 2) and the JSP 2.0 expression language (Chapter 16)
address two of the most well-founded criticisms: the lack of good iteration constructs
and the difficulty of accessing dynamic results without using either explicit Java code
or verbose jsp:useBean elements.
In this section, we address some of the most common misunderstandings about JSP.
• Our server is running JDK 1.4. So, how do I put a Swing component
in a JSP page?
• How do I put an image into a JSP page? I do not know the proper Java
I/O commands to read image files.
• Since Tomcat does not support JavaScript, how do I make images that
are highlighted when the user moves the mouse over them?
• Our clients use older browsers that do not understand JSP. What
should we do?
• When our clients use “View Source” in a browser, how can I prevent
them from seeing the JSP tags?
All of these questions are based upon the assumption that browsers know some-
thing about the server-side process. But they do not. Thus:
• For putting applets with Swing components into Web pages, what
matters is the browser’s Java version—the server’s version is irrelevant.
If the browser supports the Java 2 platform, you use the normal
APPLET (or Java plug-in) tag and would do so even if you were using
non-Java technology on the server.
• You do not need Java I/O to read image files; you just put the
image in the directory for Web resources (i.e., two levels up from
WEB-INF/classes) and output a normal IMG tag.
• You create images that change under the mouse by using client-side
JavaScript, referenced with the SCRIPT tag; this does not change just
because the server is using JSP.
• Browsers do not “support” JSP at all—they merely see the output of
the JSP page. So, make sure your JSP outputs HTML compatible with
the browser, just as you would do with static HTML pages.
• And, of course you need not do anything to prevent clients from
seeing JSP tags; those tags are processed on the server and are not part
of the output that is sent to the client.
• The JSP page is translated into a servlet and compiled only the first
time it is accessed after having been modified.
• Loading into memory, initialization, and execution follow the normal
rules for servlets.
Table 10.1 gives some common scenarios and tells whether or not each step
occurs in that scenario. The most frequently misunderstood entries are highlighted.
When referring to the table, note that servlets resulting from JSP pages use the
_jspService method (called for both GET and POST requests), not doGet or
doPost . Also, for initialization, they use the jspInit method, not the init
method.
Servlet
JSP page
Servlet loaded into jspInit _jspService
translated
compiled server’s called called
into servlet
memory
Request 2 No No No No Yes
Server restarted
Request 4 No No No No Yes
Page modified
Request 6 No No No No Yes
Servlets require you to set your CLASSPATH, use packages to avoid name conflicts,
install the class files in servlet-specific locations, and use special-purpose URLs. Not
so with JSP pages. JSP pages can be placed in the same directories as normal HTML
pages, images, and style sheets; they can also be accessed through URLs of the same
form as those for HTML pages, images, and style sheets. Here are a few examples of
default installation locations (i.e., locations that apply when you aren’t using custom
Web applications) and associated URLs. Where we list SomeDirectory, you can use
any directory name you like, except that you are never allowed to use WEB-INF or
META-INF as directory names. When using the default Web application, you also have
to avoid a directory name that matches the URL prefix of any other Web application.
For information on defining your own Web applications, see Section 2.11.
• Corresponding URL.
http://host/SomeFile.jsp
• More Specific Location (Arbitrary Subdirectory).
install_dir/webapps/ROOT/SomeDirectory
• Corresponding URL.
http://host/SomeDirectory/SomeFile.jsp
Note that, although JSP pages themselves need no special installation directories,
any Java classes called from JSP pages still need to go in the standard locations used
by servlet classes (e.g., .../WEB-INF/classes/directoryMatchingPackageName; see Sec-
tion 2.10). Note that the Java classes used by JSP pages should always be in packages;
this point is discussed further in later chapters.
Here is a quick summary of the various JSP constructs you will see in this book.
HTML Text
• Description:
HTML content to be passed unchanged to the client
• Example:
<H1>Blah</H1>
• Discussed in:
Section 11.1
HTML Comments
• Description:
HTML comment that is sent to the client but not displayed by the
browser
• Example:
<!-- Blah -->
• Discussed in:
Section 11.1
Template Text
• Description:
Text sent unchanged to the client. HTML text and HTML comments
are just special cases of this.
• Example:
Anything other than the syntax of the following subsections
• Discussed in:
Section 11.1
JSP Comment
• Description:
Developer comment that is not sent to the client
• Example:
<%-- Blah --%>
• Discussed in:
Section 11.1
JSP Expression
• Description:
Expression that is evaluated and sent to the client each time the page
is requested
• Example:
<%= Java Value %>
• Discussed in:
Section 11.4
JSP Scriptlet
• Description:
Statement or statements that are executed each time the page is
requested
• Example:
<% Java Statement %>
• Discussed in:
Section 11.7
JSP Declaration
• Description:
Field or method that becomes part of class definition when page is
translated into a servlet
• Examples:
<%! Field Definition %>
<%! Method Definition %>
• Discussed in:
Section 11.10
JSP Directive
• Description:
High-level information about the structure of the servlet code (page),
code that is included at page-translation time (include), or custom
tag libraries used (taglib)
• Example:
<%@ directive att="val" %>
• Discussed in:
page: Chapter 12
include: Chapter 13
taglib and tag: Volume 2
JSP Action
• Description:
Action that takes place when the page is requested
• Example:
<jsp:blah>...</jsp:blah>
• Discussed in:
jsp:include and related: Chapter 13
jsp:useBean and related: Chapter 14
jsp:invoke and related: Volume 2