java Servlet و CGI

  • از Servlet در   WebApplication ها استفاده می شود.
  • قبل از Servlet از CGI Technology استفاده می شده است.
  • در CGI Technology به ازای هر Request یک Object جدید ایجاد می شده است.

معرفی Client، Server و Container در جاوا

  1. Client is  the system that contain Browser Application and can communicate with server is known as client.
  2. Container is a peace of application that is installed inside the Application Server and the program has to deploy inside the container. container can identify server program, debug it and execute it. Example:Tomcat 5.5.9 is  a container. JBoss and Glassfish also are container.
  3. Server: The system where the container is installed and responsible to get the request from client is known as Server

چند نکنه در مورد Java Servelet

  1. Servlet is not a software or any peace of application.
  2. servlet is not a programming language.
  3. servlet is a web technology provided by sun.
  4. Servlet is an interface present in a java API.

اپلت در جاوا java.applet

  1. Java program can be set as an applet program if it extends applet class.
  2. the applet class present inside java.applet package.
  3. the applet program executes in a cyclic process, where it executes four different methods. 1-init  2-start  3-stop 4-destroy
  4. the process of executing this 4 methods is known a the life cycle process of applet and it starts from the applet loaded into the memory till destroy of the object is known as life cycle process of the object.
  5. init() method: the init() method is called by browser to inform the applet that it is loaded into the system.
  6. start(). with start methods executing the original service/execution of applet will start.
  7. stop(): the job of stop method is to stop the execution of an applet program.
  8. destroy(): destroy method delete all the resources that is reserved by applet.
  9. in HTML code we should use ".class" file of java. Example: <html>
    <applet code ="Demo.class" height = 600 width = 800>
    </applet>
    </html>


Thread پیش فرض در جاوا

  • in java, JVM  addes one default thread in the program and that is main thread.
  • we use any thread concept or not, by default the main thread will be added to the program.