Posts

servlets tutorial

Servlet Database Access

Servlet Database Access : Data that is shared between Web components and is persistent between invocations of a J2EE application is usually maintained by a database. Web components use the JDBC 2.0 API to access relational databases. The data for … Read More

servlets tutorial

Servlet Filter and Servlet Chain

Servlet Filter and Servlet Chain -We’ve looked at servlets that take requests from the server and provide results to the client. Servlets, on the other hand, were created as a generic server extension technology rather than one dedicated only to … Read More

servlets tutorial

ServletRequest Interface

ServletRequest: When a servlet is asked to handle a request (ServletRequest), it often requires specific information about the request in order to process it effectively. The servlet will regularly obtain the value of a form variable and utilise that value … Read More

servlets tutorial

Servlet Life Cycle

Servlet Life Cycle, When a client requests a servlet, the server loads and runs the necessary Java classes. use those classes to build content, which the server then feeds back to the client. In most cases, the client is … Read More

servlets tutorial

HttpServlet Class in Servlet

HttpServlet Class is a GenericServlet extension that adds methods for dealing with HTTP-specific data. To handle specific sorts of HTTP requests (GET, POST, and so on), HttpServlet provides a number of methods such as doGet(), doPost(), and doPut().Read More

servlets tutorial

Servlets Interview Questions and Answers

we have list out latest and updated Servlets interview questions and their answers for fresher’s as well as experienced users.  These interview question covers latest version of Servlets. Java Soft (a company that has since been reintegrated into Sun Microsystems … Read More

servlets tutorial

Servlets Tutorial – Java – Technosap

Servlets Tutorial provides the basic and advanced concepts of Servlets. Our Servlets Tutorial is designed for beginners and professionals to learn Servlets online; Java servlets are key component of server-side Java development. A servlet is a small, pluggable extension … Read More