-
Junior Member
Calling init() after servlet
Hi..
will init() gets called if we make changes in init() or service() after the servlet is loaded ?
-
Junior Member
Re: Calling init() after servlet
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.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules