The servlet init parameters are read only ONCE—when the Container initializes the servlet

When the Container makes a servlet, it reads the DD and creates the name/value pairs for the ServletConfig. The Container never reads the init parameters again! Once the parameters are in the ServletConfig, they won’t be read again until/unless you redeploy the servlet. Think about that.

  1. Container reads the Deployment Descriptor for this servlet, including the servlet init parameters (<init-param>).

    image with no caption
  2. Container creates a new ServletConfig instance for this servlet.

    image with no caption
  3. Container creates a name/value pair of Strings for each servlet init parameter. Assume we have only one.

    image with no caption
  4. Container gives the ServletConfig references to the name/value init parameters.

    image with no caption
  5. Container creates a new instance of the servlet class.

    image with no caption
  6. Container calls the servlet’s init() method, passing in the reference to the ServletConfig.

    image with no caption
image with no caption
image with no caption
..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset