Welcome To The World Of Java

This site will teach you the basics of Java. It is not necessary to have any prior programming experience.

Write a servlet which displays a message “I LOVE MY MOM”?

Somdeb Burman | 8:57:00 AM | 0 comments

import javax.servlet.*;
import java.io.*;
public class First extends GenericServlet {
 public First() {
  System.out.println("I AM FROM DEFAULT CONSTRUCTOR...");
 }
 public void init() {
  System.out.println("I AM FROM init METHOD...");
 }
 public void service(ServletRequest req, ServletResponse res) throws ServletException, IOException {
  System.out.println("I LOVE MY MOM...");
  System.out.println("I AM FROM service METHOD...");
 }
 public void destroy() {
  System.out.println("I AM FROM destroy METHOD...");
 }
}

Java Resources are available for Download from below

Category: , , ,

0 comments