JavaServer Pages (JSP)

View: [ 2009 | 2008 | 2007 | 2006 | 2005 | 2004 | 2003 | 2002 | 2001 ]

Articles
Books
Examples
  Tips
Tutorials
  

Articles:
  • Solving the logout problem properly and elegantly by Kevin H. Le   - [Clicks: 229]
    This article presents solutions for properly handling the logout problem along with sample programs. Author Kevin Le starts by describing an ideal password-protected Web application. He then uses sample programs to illustrate how the problems manifest themselves and discusses the solutions required to fix the problems. By centering the discussion on JavaServer Pages (JSP), the article presents the concepts that can be easily understood and adopted for other Web-tier technologies. Le concludes his discussion by showing how building Web applications with Jakarta Struts can more elegantly solve the logout problem. Sample programs for both JSP and Struts Web applications are included.
    [Includes source code]
    http://www.javaworld.com/javaworld/jw-09-2004/jw-0927-logout.html - Sep, 2004
  • Create easy-to-view tables by Jeff DePree   - [Clicks: 78]
    Tired of scrolling for table data? With this consolidated table widget, you simply point to all the information you need -- even on devices with small screens. This article describes how you can reduce the dimensions of a tabular display while retaining the ability to view all fields of a selected column and row simultaneously.
    http://www-106.ibm.com/developerworks/web/library/wa-widget/ - Sep, 2004
  • Flex vs. JSP by Peter Ent   - [Clicks: 20]
    I am a Web application developer. That can mean a number of things these days, but in my case, it means I write code on both the client and the server to make a complete "application." For many of us, the client-side code is JSP - JavaServer Pages. Perhaps, like me, you find JSP to be awkward with its mixture of languages and styles.
    http://www.sys-con.com/story/?storyid=46267&DE=1 - Sep, 2004
  • Introduction to Tag Unit by Simon Brown   - [Clicks: 20]
    In Introduction to TagUnit: Part 1, we looked at some of the various ways in which custom tags can be tested before demonstrating some of the basic features provided by TagUnit--an open source testing tool specifically aimed at JSP custom tags. In this article we'll complete the story by looking at some examples of how tests can be written with TagUnit.
    http://today.java.net/pub/a/today/2004/08/30/TagUnitIntro.html - Aug, 2004
  • Dynamic data analysis on the Web: A design approach by Simon Moore, Dave Clark, Andy Smith   - [Clicks: 17]
    Learn how to separate your Web site building tasks for an attractive and efficient end result. This article describes an adaptable approach which separates programming tasks from Web page design tasks. A strong conceptual model encourages good design, enables re-use of data definitions, and is well-suited to the construction of dynamic user interfaces. The author also illustrates the particular challenges you might encounter when you dynamically change the analysis of Web pages.
    http://www-106.ibm.com/developerworks/web/library/wa-pgauthor/ - Aug, 2004
  • Introduction to Tag Unit by Simon Brown   - [Clicks: 15]
    JSP custom tags have been adopted by JSP developers as a way of abstracting complex code out of the page and into reusable components. This article introduces TagUnit -- an easy-to-use testing tool that makes it possible to comprehensively test JSP tags.
    http://today.java.net/pub/a/today/2004/07/05/TagUnitIntro.html - Jul, 2004
  • Delve Into Web Tier Components by Paul Philion   - [Clicks: 37]
    In my article, "Take a Tour of Web Tier Technologies," I outline J2EE Web tier technologies and discuss how you can use them to build robust Web applications. Those J2EE Web tier technologies are the subject of many JavaOne sessions this week, so in this article, I'll drill down further into the specific Web tier components.
    http://www.ftponline.com/reports/javaone/2004/philion2/ - Jun, 2004
  • Servlet and JSP performance tuning by Rahul Chaudhary   - [Clicks: 95]
    In this article, Rahul Chaudhary describes performance-tuning techniques (PTT) that can be used to improve the performance of servlets and JSP pages, thus improving the performance of your J2EE applications. The author assumes the reader has basic knowledge of servlets and JavaServer Pages.
    http://www.javaworld.com/javaworld/jw-06-2004/jw-0628-performance.html - Jun, 2004
  • Creating EL-Aware Taglibs Using Xdoclet by Felipe Leme   - [Clicks: 29]
    Passing dynamic values to taglibs via the JSP expression language (EL) is convenient, but is hard on the taglib developer and is therefore little-supported. Felipe Leme shows how code generation might solve that problem.
    [Includes source code]
    http://today.java.net/pub/a/today/2004/06/18/el-taglib.html - Jun, 2004
  • SQL Database Access with DBTags by Deepak Vohra   - [Clicks: 35]
    Jakarta DBTags is a custom tag library that consists of tags to access and modify a database. This tutorial explains the procedure to incorporate Apache Jakarta DBTags custom tag library tags in an example JSP.
    [Includes sample JSP]
    http://www.onjava.com/pub/a/onjava/2004/05/05/dbtags.html - May, 2004
  • Generating Images with JSPs and Servlets by Joshua Marinacci   - [Clicks: 69]
    Java's imaging APIs aren't just for desktop applications anymore! In this article, Joshua Marinacci looks at how servlets and JSPs can use the Java2D graphics API to create on-demand graphics for web users.
    http://today.java.net/pub/a/today/2004/04/22/images.html - Apr, 2004
  • Cooking with Java Servlets & JSP, Part 2 by Bruce W. Perry   - [Clicks: 53]
    In this second and final batch of recipes excerpted from Java Servlet & JSP Cookbook, author Bruce Perry shows you how to access an EJB from a servlet on WebLogic, and how to connect to Amazon Web Services (AWS) with a servlet or JSP.
    [O'Reilly Book Excerpts: Java Servlet & JSP Cookbook]
    http://www.onjava.com/pub/a/onjava/excerpt/jsvltjspckbk_chap01/index1.html - Mar, 2004
  • MVC Heresy with SQLTags by Steve A. Olson   - [Clicks: 10]
    SQLTags (sqltags.org) is, indeed, a deliberate deviation from the orthodoxy of the Model-View-Control (MVC) design pattern; therefore, SQLTags is heresy, but is it necessarily "bad?" In this article, I will introduce the SQLTags toolkit and when it can be successfully employed.
    http://www.onjava.com/pub/a/onjava/2004/03/03/sqltags.html - Mar, 2004
  • Cooking with Java Servlets & JSP by Bruce W. Perry   - [Clicks: 61]
    Learn how to use the Java Plug-in HTML Converter tool to generate the tags for embedding an applet, how to configure a javax.sql.DataSource for use in a servlet with the Tomcat web container, and how to use the JSTL's XML and XSLT-related tags.
    [O'Reilly Book Excerpts: Java Servlet & JSP Cookbook]
    http://www.onjava.com/pub/a/onjava/excerpt/jsvltjspckbk_chap01/index.html - Feb, 2004
  • Validating Custom Tags at Translation Time by Felipe Leme   - [Clicks: 13]
    Definining Tag Extra Info (TEI) and Tag Library Validators (TLVs) for custom runtime validation of JSPs.
    http://today.java.net/pub/a/today/2004/02/04/validation.html - Feb, 2004
  • Integrating Amazon Web Services with JavaServer Pages by Ken Yee   - [Clicks: 14]
    First, we'll look at how to create the application using Dreamweaver and JavaServer Pages (JSPs); this technique is used for the simplest of Web applications for reasons we'll clarify later. Then, we'll look at how to create the application using Entity JavaBeans (EJBs), JavaBeans, and Struts; this technique is typically used for more robust and complex Web applications.
    http://www-10.lotus.com/ldd/today.nsf/lookup/AWSintegration_pt2 - Jan, 2004
  • Developing Multilingual Web Applications Using JavaServer Pages Technology by Norbert Lindenberg   - [Clicks: 44]
    For context, this article starts with a brief introduction to the JavaServer Pages technologies, so you can better understand how to use them to approach internationalization issues. I then discuss several core problems intrinsic to the development of multilingual web applications, and describe how to solve them using JavaServer Pages technologies: locale determination and localization, character encodings, and formatting and parsing.
    http://java.sun.com/developer/technicalArticles/Intl/MultilingualJSP/ - Jan, 2004

[Top]

Books:
  • Beginning JSP 2: From Novice to Professional  by Peter den Haan, Lance Lavandowska, Sathya Narayana Panduranga, Krishnaraj Perrumal   - [Clicks: 38]
    This book is your guide as you begin using JSP. It starts by steering you through your first JSP application. It reviews HTML and provides you with a useful overview of JSP. You’ll then be ready to start learning one of the core techniques in JSP—pulling data from a database and working with that data. When you’ve mastered this technique, you’ll be ready to branch out powerfully into other JSP topics in this book: variables, scope, flow control, and code reuse for productive time management. Finally, the book shows you how you can use JSP with XML and gives you a taste of some advanced topics, including using Struts and the Model View Controller. Beginning JSP 2 gives step-by-step examples to explain the techniques behind the code. It provides realistic scenarios wherever possible to build your knowledge and confidence in JSP. After reading this book, you’ll have the knowledge and skills to enter the Web development and Java development industries. All you need to begin this journey is a basic understanding of HTML and Java.
    Apress, Paperback - May, 2004
  • Java Servlet & JSP Cookbook  by Bruce W. Perry   - [Clicks: 85]
    O'Reilly Media, Inc., Paperback - 2004
  • JavaServer Pages, 3rd Edition  by Hans Bergsten   - [Clicks: 29]
    O'Reilly Media, Inc., Paperback - 2004
  • Sams Teach Yourself JavaServer Pages 2.0 in 24 Hours, Complete Starter Kit with Apache Tomcat  by Mark Wutka, Alan Moffet   - [Clicks: 20]
    Sams, Paperback - 2004

[Top]

Examples:
  • How-To Examples   - [Clicks: 608]
    The following set of How-To examples have been published to help you get up to speed with the new capabilities available in the OC4J 10g (10.0.3) Developer Preview.
    [Note: these How-To examples only work with the OC4J 10g (10.0.3) Developer Preview and not with earlier versions.]
    http://otn.oracle.com/tech/java/oc4j/1003/how_to.html - 2004

[Top]

Tips:
  • Custom Tag Files by Mark Johnson   - [Clicks: 16]
    … The new tag file feature of JSP 2.0 allows non-programmers to write reusable custom tags. It also makes life easier for programmers. Using JSP 2.0 syntax with the JavaServer Pages Standard Tag Library (JSTL) and its expression language (EL), you can now create custom tags without writing any Java code.
    [Includes source code]
    http://java.sun.com/developer/EJTechTips/2004/tt0227.html#1 - Feb, 2004
  • Using Enterprise Beans with JSP Pages by Mark Johnson   - [Clicks: 24]
    ... JavaBean properties can also be accessed with simple EL expressions. This feature makes Enterprise JavaBeans components (enterprise beans) very easy to use from within JSP pages. Simply place the enterprise beans required by an application view in named attributes (in the appropriate scope), and let the JSP page access the attribute by name in EL expressions. The best way to show this technique is by example.
    [Includes source code]
    http://java.sun.com/developer/EJTechTips/2004/tt0227.html#2 - Feb, 2004

[Top]

Tutorials:
  • Building dynamic Web sites with WebSphere Studio V5.1.1 by Ron Ben-Natan   - [Clicks: 39]
    This tutorial demonstrates how to use WebSphere Studio V5.1.1 for building dynamic Web sites. The tutorial walks you through a simple example that makes use of Java servlets and JavaServer Pages in order to implement a simple messaging center. Using WebSphere Studio, you learn how to develop dynamic Web sites and then how to test and debug your code.
    [Formats: HTML, PDF, Zip]
    http://www-106.ibm.com/developerworks/edu/i-dw-wes-dynweb511-i - Jan, 2004

[Top]