|
|
| Servlets [+] Favor-It | |
| |
 |
| | Sort By:
|
First we built a simple web app with Servlets and JSP. We skipped over some of the finer details, likeaccessing the database using Servlets. In this part we will modify our Login Servlet to validate the userid and password with those from the database. Author: Harshal Deo Code: JSP 1.2 |
Java Servlet technology provides Web developers with a simple, consistent mechanism for extending the functionality of a Web server and for accessing existing business systems. A servlet can almost be thought of as an applet that runs on the server side. Author: java.sun.com Code: JSP 1.2 |
This article will try to show the different steps involved in developing a simple web application using server side Java. It is intended for web developers willing to use java in their server side programming and Java programmers writing web applications. Author: Harshal Deo Code: JSP 1.1 |
|  | |
The HttpServlet class extends the GenericServlet class, which in turn implements the Servlet interface. This class is defined in the javax.servlet.http package, which contains easier to use servlets than the base servlet interface. Author: .netCoders Code: JSP 1.2 |
This document explains the concepts of Java Servlets and provides a step-by-step tutorial for writing HTTP Servlets with complete source code for the example Servlets. Author: Stefan Zeiger Code: JSP 1.1 |
Learn about Servlets and JSP written with Jython—how to set up a Servlet container, the basic Servlet classes, implementing cookies, sessions and database connections, and using Jython with JSP pages. Author: Robert Bill Code: JSP 1.2 |
Similar to the HttpServlet improving upon the Servlet interface, the HttpServletRequest and HttpServletResponse interfaces improve the ServletRequest and ServletResponse interfaces for HTTP servlets.
Author: .netCoders Code: JSP 1.2 |
|  | |
The ServletConfig object is used by servlet containers to pass environmental configuration information to servlets on initialization. Author: .netCoders Code: JSP 1.2 |
The ServletContext object is used to communicate with the servlet's runtime environment. There is one ServletContext object per web application. Servlets can also add variables to this object and have them accessible by other servlets. Author: .netCoders Code: JSP 1.2 |
Icon Key >
 - Recently Updated
 - Showcase Listing
|