difference between init() & init(ServletConfig config)?

difference between init() & init(ServletConfig config)?

I want to know the difference between init() and init(ServletConfig config) methods in GenericServlet.

View Answers

October 10, 2012 at 4:59 PM

Hi MangaRao,

The Generic servlet contain two types of inti methods they are

void init(ServletConfig) and init().

 in this init(ServletConfig) internally call to init() method like

init(ServletConfig config) {
         inti();
 }









Related Tutorials/Questions & Answers:

Ads