
Reserve it at BN.com & pick it up in 60 minutes at your local store.
Enter a zip code
The JSP standard tag library (JSTL) provides a scripting language and set of standard tags that make JSP accessible to page authors and allows the separation of the business and presentation layers. This book examines the JSTL expression language in detail, and shows how to perform tasks for JSP-based web applications, such as setting bean properties and map entries, iterating over strings and arrays, importing the content of a URL-based resource, accessing configuration settings, formatting and parsing numbers, and querying a database. Annotation (c)2003 Book News, Inc., Portland, OR
More Reviews and RecommendationsDAVID M. GEARY is the president of Sabreware, Inc., a training and consulting company focusing on server-side Java technology. He has been developing object-oriented software for nearly 20 years and was among the pioneers who worked on the Java platform APIs at Sun Microsystems from 1994 to 1997. Geary is the author of six books on Java technology, including the runaway best-selling Graphic Java series, and Advanced JavaServer Pages. A member of the expert group that developed JSTL, he is also a contributor to the Apache Struts JSP software application framework and wrote questions for the Web component developer certification exam. Since 1996, he has been a columnist for Java Report magazine. He also writes JavaWorld's Java Design Patterns column.
Reader Rating:
See Detailed Ratings
March 19, 2003: Last year I built a website that used Java Server Pages to dynamically generate most of the pages. It worked well, but was very kludgy. JSPs invariably mix the HTML display code with some of the internal data logic. Through a judicious use of the Model-View-Controller paradigm, I was able to reduce this mixing. But a minimal amount was still inevitable. This is a common experience with JSPs. You end up with files containing java code and HTML. Ugly and brittle. Plus, it calls upon two areas of expertise. A separation of the two would be much more robust, and allow people with skills in only one of these areas to still contribute to the development. In answer to this, Sun has been refining its Standard Tag Library. Specifically, it now has an expression language that is a programming language in its own right and is comprehensively described in this book, which bears Sun's official impramateur. Programmers versed in other languages can quickly absorb this. Thru it, you can easily write code to access Java Beans and other java programs. Plenty of clear examples are provided. Of interest to several will be how to use STL to hook up to back end SQL databases; transferring from them into webpages and transmitting user changes back into the databases. The author also covers the important case of interacting with XML, which is now a de facto standard for data interchange. Nor does he neglect describing issues of internationalisation. Practical for those who have to support several languages. The sum of all these is to make this book very useful for those of you needing to build JSPs in business applications. I do wish I had this book last year!