Hi..
will init() gets called if we make changes in init() or service() after the servlet is loaded ?
Printable View
Hi..
will init() gets called if we make changes in init() or service() after the servlet is loaded ?
the init() method has signature like public void init() throws ServletException
it is usually called by init(ServletConfig sc) method
so yes if u override init() it is still going to be called.