- Debugging Servlets using JBuilder and Tomcat
This document talks about debugging servlets using the free JBuilder IDE (versions 3.0 or 3.5) and using Tomcat 3.1 (that supports Servlet API 2.2 and JSP 1.1). This would allow the servlet developer to step through servlet code using the IDE and debug. The author feels that it is immensely helpful to use a debugger instead of just writing System.out.printlns and log() calls and hoping for some miracle to make your code work.
http://www.geocities.com/SiliconValley/Peaks/3649/jbuilderdebug.html
(Rating: 0.00 Votes: 0)
Rate It
Review It
- Encapsulate reusable functionality in JSP tags
JavaServer Pages (JSP) are a great mechanism for delivering dynamic Web-based content. JSP provides a set of predefined tags, but you can also define your own tag extensions that encapsulate common functionality. This article will show how easy it is to build, deploy, and use your own custom JSP tag, using the Servlet/JSP reference implementation, Tomcat.
http://www.javaworld.com/javaworld/jw-08-2000/jw-0811-jsptags.html
(Rating: 0.00 Votes: 0)
Rate It
Review It
- Filtering tricks for your Tomcat
One of the most exciting features of the new Java Servlet 2.3 specification is filtering. At first sight, Servlet 2.3 filtering is deceptively similar to existing legacy filters in Apache, IIS, Netscape Web servers and others. In reality, Servlet 2.3 filtering is a completely different design architecturally -- leveraging the object-oriented nature of the Java platform to provide a new level of performance. This article introduces you to filtering in Tomcat 4 and shows you how to make productive use of filters in your projects.
http://www-106.ibm.com/developerworks/java/library/j-tomcat/?open&l=766,t=grj,p=TomcatTricks
(Rating: 0.00 Votes: 0)
Rate It
Review It
- Tag Conventions in JSP
There are two primary types of tag conventions in Java Server Pages: Scripting-Oriented Tags and XML-Based Tags. Learning them gives you insight not only into JSP, but XML, too. This article is the second excerpt in a series from the book, "Web Development with JavaServer Pages."
http://www.webreview.com/2001/01_19/developers/index05.shtml
(Rating: 0.00 Votes: 0)
Rate It
Review It
|