| View: | [ 2009 | 2008 | 2007 | 2006 | 2005 | 2004 | 2003 | 2002 | 2001 ] |
| Articles Presentations |
- Verifying User Input Using JSP Tag Libraries by Vlad Kofman - [Clicks: 79]
Should you go with server-side verification or client-side verification? Both have their advantages and disadvantages. Discover a unique way of using a Java JSP tab library for server-side verification. This may be your answer.
http://www.developer.com/java/web/article.php/3287891 - Dec, 2003 - Isolate server includes' runtime context by Borislav Iordanov - [Clicks: 23]
Dynamically included JavaServer Pages (JSP) pages and servlets offer simple, but limited means for frontend code encapsulation and reuse. A dynamically included resource often relies on runtime data (request parameters, JSP-scoped attributes), and this restricts the runtime context from which it can be included. This article shows how to achieve true black-box reuse of frontend logic in the form of JSP pages or Java servlets, by wrapping the servlet request object and effectively creating a local runtime context for an included resource.
[Includes source code]
http://www.javaworld.com/javaworld/jw-12-2003/jw-1205-dynamic.html - Dec, 2003 - Taglibs: Designing Web APIs for the Non-Programmer by Joshua Marinacci - [Clicks: 26]
Describes three JSP tag library redesigns to illustrate concepts of simplifying taglibs for non-programmer use.
[Includes source code]
http://today.java.net/pub/a/today/2003/11/20/taglibs.html - Nov, 2003 - Solving Real-World Problems with JavaJewel and Custom JSP Tags by David L. Whitehurst - [Clicks: 14]
Take a look at a wrapper class that may prove the best solution for dynamic storage and custom presentation of HTML data on JSP pages.
http://www.ftponline.com/javapro/2003_11/online/jsp_dwhitehurst_11_18_03/ - Nov, 2003 - Easy Custom Tags with Tag Files, Part 1 by Budi Kurniawan - [Clicks: 27]
Tag Files are one of the most important new features in JSP 2.0. This article provides a comprehensive discussion on tag files.
[Includes source code]
http://today.java.net/pub/a/today/2003/11/14/tagfiles.html - Nov, 2003 - Send Form Data from Java: A Painless Solution by Vlad Patryshev - [Clicks: 43]
Sending multipart/form data from Java is a painful process that bogs developers down in protocol details. This article provides a simple, real-world solution that makes sending POST requests as simple as sending GET requests, even when sending multiple files of varying type.
http://www.devx.com/Java/Article/17679 - Oct, 2003 - J2EE pathfinder: Implement JSP custom tags in five easy steps by Kyle Gabhart - [Clicks: 22]
In this installment of J2EE pathfinder, enterprise-minded developer Kyle Gabhart introduces the basics of JSP custom tags and takes you through the five-step process of incorporating them into your JSP pages.
http://www-106.ibm.com/developerworks/java/library/j-pj2ee8/ - Oct, 2003 - JSP best practices: Pack 'em up! by Brett McLaughlin - [Clicks: 36]
Brett McLaughlin explains how to JAR your custom taglibs for easier maintenance, distribution, and installation in any JSP-compliant Web container.
http://www-106.ibm.com/developerworks/java/library/j-jsp09023.html - Sep, 2003 - JSP best practices: Error handling in custom tags by Brett McLaughlin - [Clicks: 27]
Brett McLaughlin shows you how to trap and override an IllegalArgumentException at its source.
http://www-106.ibm.com/developerworks/library/j-jsp08193/ - Aug, 2003 - JSP best practices: Create custom attributes for your JSP tags by Brett McLaughlin - [Clicks: 28]
Brett McLaughlin continues his JSP best practices series by extending the custom time-stamp tag (lastModified) with an attribute that lets page authors choose their own time-stamp format.
http://www-106.ibm.com/developerworks/web/library/j-jsp08053.html - Aug, 2003 - More JSP best practices by Dustin Marx - [Clicks: 33]
Advancements in the JavaServer Pages (JSP) specification, along with increased availability of JSP development tools and increased coverage of JSP development techniques, have facilitated the development of highly maintainable and standardized JSP-based Web applications. This article discusses key instances of these advancements and how each progression enables easier development of robust JSP Web applications. This article's best practices will help you make the most of JSP's strengths and prepare you to take advantage of future JSP enhancements.
http://www.javaworld.com/javaworld/jw-07-2003/jw-0725-morejsp.html - Jul, 2003 - JSP best practices: Intro to taglibs by Brett McLaughlin - [Clicks: 43]
Brett McLaughlin shows you how to convert a scriptlet into a JSP custom tag, add it to a custom tag library, and begin using it in your JSP development.
http://www-106.ibm.com/developerworks/java/library/j-jsp07233.html - Jul, 2003 - Simple Web Page Keyword Matching Tool by Monica Pawlan - [Clicks: 22]
Have you ever created a web page with a lot of detailed information and wanted an easy way for your readers to parse and filter page entries based on user-specified keywords? This article explains how to use an HTML form and JavaServer Pages (JSP) technology to do exactly that.
http://java.sun.com/developer/technicalArticles/javaserverpages/keywordsearch/ - Jul, 2003 - JSP best practices: The power of time stamps by Brett McLaughlin - [Clicks: 17]
Brett McLaughlin continues his JSP best practices series with a look at the various techniques for adding time stamps to your JSP pages, as well as the ways that this simple modification can enhance the usability of your Web site.
http://www-106.ibm.com/developerworks/java/library/j-jsp07013.html - Jul, 2003 - Pagination using DB2 UDB and JSPs by Naveen Balani - [Clicks: 130]
Many Web-based applications include the requirement to display some part of the user search results in chunks of pages. This article will describe how to implement this design requirement using features provided by DB2 Universal Database (UDB) and how to cache the results using a stateful bean or session.
http://www7b.boulder.ibm.com/dmdd/library/techarticle/0307balani/0307balani.html - Jul, 2003 - Accessing Databases from Servlets and JSP Pages by Budi Kurniawan - [Clicks: 82]
This article shows how you can do the most common database manipulations from servlets and JSP pages. This article begins with an introduction to JDBC followed by some examples of servlets that allow you to access the data in the database.
http://today.java.net/pub/a/today/2003/06/20/jspDb.html - Jun, 2003 - JSP best practices: Import content to your Web site by Brett McLaughlin - [Clicks: 36]
An improved JSTL tag for pulling in content from external sites.
http://www-106.ibm.com/developerworks/java/library/j-jsp06173.html - Jun, 2003 - JSP Progress Bars by Andrei Cioroianu - [Clicks: 48]
Many web and enterprise applications must perform CPU-intensive operations, such as complex database queries or heavy XML processing. These tasks are handled by database systems or middleware components, but the results are presented to the user with the help of JSP. This article shows how to implement the front tier in order to improve the user experience and reduce the server load.
http://www.onjava.com/pub/a/onjava/2003/06/11/jsp_progressbars.html - Jun, 2003 - JSP best practices: Update your JSP pages with JSTL by Brett McLaughlin - [Clicks: 112]
Brett McLaughlin introduces JSTL and shows you how to convert your JSP pages to use its highly functional tags.
http://www-106.ibm.com/developerworks/java/library/j-jsp05273.html - May, 2003 - JSP best practices: Combine JavaBeans components and JSP technology by Brett McLaughlin - [Clicks: 32]
Web architect Brett McLaughlin demonstrates how combining JavaBeans components and JSP technology lets you store and pass data between your Web pages, and how doing so leads to more dynamic site design.
http://www-106.ibm.com/developerworks/java/library/j-jsp05133.html - May, 2003 - Creating Richer Hyperlinks with JSP Custom Tags by Amit Goel - [Clicks: 14]
This article presented a JSP custom tag capable of extending the linking functionality of HTML. Those developing on the .NET platform can implement similar functionality using ASP.NET custom server controls.
http://www.onjava.com/pub/a/onjava/2003/04/30/jsp_hyperlinks.html - Apr, 2003 - JSP best practices: Manipulate dynamic content with jsp:include by Brett McLaughlin - [Clicks: 33]
Brett McLaughlin shows you how to extend the JSP technology inclusion functionality for dynamic content. Learn the differences between the static include directive and the dynamic jsp:include element, and find out how to mix and match the two for optimum performance.
http://www-106.ibm.com/developerworks/java/library/j-jsp04293.html - Apr, 2003 - Creating pie charts with JSP is a breeze - [Clicks: 72]
Java Server Pages (JSP) makes it easy to read and summarize data from a database and then display the results in a pie chart. We'll show you what you need to do to tap into this functionality.
http://builder.com.com/5100-6370-1051766.html?tag=sc - Apr, 2003 - JSP best practices: Improve your look and feel with the JSP include mechanism by Brett McLaughlin - [Clicks: 34]
This first installment in the new JSP best practices series introduces the JavaServer Pages include mechanism. Follow along as Java programming expert Brett McLaughlin shows you how to use include to incorporate static header and footer files into your Web site or Web application pages.
http://www-106.ibm.com/developerworks/java/library/j-jsp04153.html - Apr, 2003 - A Custom JSP Tag Library for Dynamic Menus by Prabu Arumugam - [Clicks: 32]
This article describes a custom tag library that simplifies the process of generating JavaScript dynamically. The design and implementation of the tag library are covered in detail.
http://www.onjava.com/pub/a/onjava/2003/04/09/dynamic_taglib.html - Apr, 2003 - Servlets and JSP Pages Best Practices by Qusay H. Mahmoud - [Clicks: 70]
In this article, I'll present important best practices for servlets and JSP pages; I assume that you have basic working knowledge of both technologies.
http://java.sun.com/developer/technicalArticles/javaserverpages/servlets_jsp/ - Mar, 2003 - Create a reusable graph background in JSP - [Clicks: 47]
Displaying graphs on Java Server Pages is a fairly simple task, but you can make the process cleaner by creating reusable backgrounds. Learn this technique and see how to encode graph data.
http://builder.com.com/5100-6370-5031703.html?tag=sc - Mar, 2003 - Web apps in a snap by Erik Swenson - [Clicks: 134]
This column provides an introduction to WebWork and illustrates the process of login page creation using WebWork and two different view technologies, JavaServer Pages (JSP) and Velocity.
[Create a login page with WebWork, JSP, and Velocity]
http://www.javaworld.com/javaworld/jw-03-2003/jw-0307-opensourceprofile.html - Mar, 2003 - Tracking Users with Sessions and Cookies by Steven Holzner - [Clicks: 33]
Learn several ways, including hidden text, cookie objects, session objects, applications, and JavaBeans, to track users and the benefits of each one.
http://www.informit.com/isapi/product_id~{8F5E0759-BEBD-4698-9514-82E0C82447E1}/session_id~{}/content/index.asp - Feb, 2003 - Enhance your J2EE presentation layer by Joseph Shomphe - [Clicks: 17]
With the introduction of Remoting capabilities to Macromedia's Flash product, Java developers have a whole new type of presentation layer to consider besides JSP (JavaServer Pages) and Swing when building a J2EE (Java 2 Platform, Enterprise Edition) application. This article examines Flash Remoting, explains why it can prove useful, and provides an example of how to implement it.
http://www.javaworld.com/javaworld/jw-01-2003/jw-0117-flash.html - Jan, 2003 - Creating a Web Application with Ant and Tomcat 4 by Paul Wood - [Clicks: 90]
I have decided to use Tomcat 4 Servlet/JSP Container technologies to implement a Web application.
http://www.onjava.com/pub/a/onjava/2003/01/08/tomcat4.html - Jan, 2003
- Intro to Java Web Programmming: JSP 2.0 and JS Faces by Burr Sutter - [Clicks: 115]
DemoWebApp
[Readme]
http://www.ajug.org/meetings/download/DemoWebApp.zip - Aug, 2003 - (ZIP - 272 Kb) - Webhosting JavaServer Pages (JSP) / Servlets Technology Securely Using Open-Source Products by Renato Weiner - [Clicks: 15]
This session describes how LocaWeb, the biggest Webhosting company in Brazil, successfully supports JavaServer Pages (JSP) / Servlets applications securely in a shared environment.
[JavaOne 2003 - Multimedia format]
http://servlet.java.sun.com/javaone/resources/content/sf2003/conf/sessions/pdfs/1771.pdf - Jun, 2003 - (PDF - 416 Kb)