JavaServer Pages
Filename extension | .jsp |
---|---|
Internet media type | application/jsp |
Latest release | 2.1 |
Standard(s) | JSR 245 |
Website | JavaServer Pages Technology |
JavaServer Pages (JSP) is a technology that helps software developers create dynamically generated web pages based on HTML, XML, or other document types. Released in 1999 by Sun Microsystems[1], JSP is similar to PHP, but it uses the Java programming language.
To deploy and run JavaServer Pages, a compatible web server with a servlet container, such as Apache Tomcat or Jetty, is required.
Contents |
Overview
Architecturally, JSP may be viewed as a high-level abstraction of Java servlets. JSPs are translated into servlets at runtime; each JSP's servlet is cached and re-used until the original JSP is modified.[2]
JSP can be used independently or as the view component of a server-side model–view–controller design, normally with JavaBeans as the model and Java servlets (or a framework such as Apache Struts) as the controller. This is a type of Model 2 architecture.[3]
JSP allows Java code and certain pre-defined actions to be interleaved with static web markup content, with the resulting page being compiled and executed on the server to deliver a document. The compiled pages, as well as any dependent Java libraries, use Java bytecode rather than a native software format. Like any other Java program, they must be executed within a Java virtual machine (JVM) that integrates with the server's host operating system to provide an abstract platform-neutral environment.
JSP pages are usually used to deliver HTML and XML documents, but through the use of OutputStream, they can deliver other types of data as well.[4]
Syntax
JSP pages use several delimiters for scripting functions. The most basic is <% ... %>, which encloses a JSP scriptlet. A scriptlet is a fragment of Java code that is run when the user requests the page. Other common delimiters include <%= ... %> for expressions, where the value of the expression is placed into the page delivered to the user, and directives, denoted with <%@ ... %>.[5]
Java code is not required to be complete or self-contained within its scriptlet element block, but can straddle markup content providing the page as a whole is syntactically correct. For example, any Java if/for/while blocks opened in one scriptlet element must be correctly closed in a later element for the page to successfully compile. Markup which falls inside a split block of code is subject to that code, so markup inside an if block will only appear in the output when the if condition evaluates to true; likewise, markup inside a loop construct may appear multiple times in the output depending upon how many times the loop body runs.
The following would be a valid for loop in a JSP page:
<p>Counting to three:</p> <% for (int i=1; i<4; i++) { %> <p>This number is <%= i %>.</p> <% } %> <p>Done counting.</p>
The output displayed in the user's web browser would be:
- Counting to three:
- This number is 1.
- This number is 2.
- This number is 3.
- Done counting.
For more examples, see Java Programming/JSP at Wikibooks.
Expression Language
Version 2.0 of the JSP specification added support for the Expression Language (EL), used to access data and functions in Java objects. In JSP 2.1, it was folded into the Unified Expression Language, which is also used in JavaServer Faces.[6]
An example of EL syntax:
The value of "variable" in the object "javabean" is ${javabean.variable}.
Additional tags
The JSP syntax adds additional tags, called JSP actions, to invoke built-in functionality.[5] Additionally, the technology allows for the creation of custom JSP tag libraries that act as extensions to the standard JSP syntax.[7] One such library is the JSTL, with support for common tasks such as iteration and conditionals (the equivalent of "if" and "for" statements in Java.)[8]
Compiler
A JavaServer Pages compiler is a program that parses JSPs, and transforms them into executable Java Servlets. A program of this type is usually embedded into the application server and run automatically the first time a JSP is accessed, but pages may also be precompiled for better performance, or compiled as a part of the build process to test for errors.[9]
Some JSP containers support configuring how often the container checks JSP file timestamps to see whether the page has changed. Typically, this timestamp would be set to a short interval (perhaps seconds) during software development, and a longer interval (perhaps minutes, or even never) for a deployed Web application.[10]
Comparison with similar technologies
JSP pages are similar to PHP pages and ASP.NET Web Forms, in that all three add server-side code to an HTML page. However, all three terms refer to a different component of the system. JSP refers to the JSP pages, which can be used alone, with Java servlets, or with a framework such as Apache Struts. PHP is itself a programming language, designed for dynamic Web pages.[11] ASP.net is a framework comparable to Struts or JavaServer Faces that uses pages called Web Forms.[12]
While JSP pages use the Java language, ASP.NET pages can use any .NET-compatible language, usually C#.
ASP.NET is designed for a Microsoft Windows web server, while PHP and Java server technologies (including JSP) are fairly operating system agnostic.
Caching to improve performance
The popularity of JavaServer Pages has meant that it is being used quite frequently in developing high-traffic web apps. And, this is causing performance bottlenecks as you try to add more users and transaction load on your JavaServer Pages application. Although, JavaServer Pages application can scale very nicely to multiple web servers, the database server cannot. The main reason for the database becoming a bottleneck is that while you can add more and more servers to the JavaServer Pages application server farm, you cannot do the same at the database tier. This results in limited scalability at the data tier.You can remove these JavaServer Pages Servlets performance bottlenecks by using a distributed cache for storing the frequently used data.
Criticism
In 2000, Jason Hunter criticized JSP for either tempting or requiring the programmer to mix Java code and HTML markup, although he acknowledged it would "wean people off of" Microsoft's Active Server Pages. Later, he added a note to his site saying that JSP had improved since 2000, but also cited its competitors, Apache Velocity and Tea.[13]
See also
- JavaServer Faces
- JavaServer Pages Standard Tag Library (JSTL)
- El expressions
- Java EE version history
Servlet containers
Java-based alternatives
References
- ^ Mailing list archive: "Sun JSP 1.0 *not* available"
- ^ The Life Cycle of a JSP Page (Sun documentation)
- ^ Understanding JavaServer Pages Model 2 architecture (JavaWorld)
- ^ Forum thread (JavaRanch): OutputStream already obtained
- ^ a b JSP 1.1 Syntax Reference
- ^ The Unified Expression Language (Sun Developer Network)
- ^ Tag Libraries Tutorial - What is a Tag Library? (Sun)
- ^ JSTL documentation (Oracle)
- ^ IBM WebSphere 6.0.2 documentation
- ^ Sybase EAServer 5.0 documentation
- ^ PHP: General Information
- ^ Staff (2001-11). "Overview of ASP.NET and Web Forms". Microsoft. http://msdn.microsoft.com/en-us/library/ms973868.aspx#introwebforms_topic1. Retrieved 2011-06-05.
- ^ The Problems with JSP (January 25, 2000)
Further reading
- Bergsten, Hans (2003). JavaServer Pages (3rd Edition ed.). O'Reilly Media. ISBN 978-0-596-00563-4.
- Hanna, Phil. JSP 2.0 - The Complete Reference. McGraw-Hill Osborne Media. ISBN 978-0-07-222437-5.
- Sierra, Kathy; Bert Bates & Bryan Basham. Head First Servlets & JSP. O'Reilly Media. ISBN 978-0-596-00540-5.
- Brown, Simon; Sam Dalton, Daniel Jepp, Dave Johnson, Sing Li, and Matt Raible. Pro JSP 2. Apress. ISBN 1-59059-513-0.
External links
- Official tutorial: The Java EE 5 Tutorial, Chapter 5, JavaServer Pages Technology
- JSP tutorials with source code
- JSP v2.0 Syntax Reference
- JavaServer Pages v2.0 Syntax Card (html)
- Servlet History « Jim Driscoll's Blog
|