can we use the constructor instead of init to


Can we use the constructor, instead of init(), to initialize servlet?

Ans) Yes. Of course you can use the constructor instead of init(). There's nothing to stop you. But you shouldn't. The main reason for init() was that ancient versions of Java couldn't dynamically invoke constructors with arguments, so there was no way to give the constructor a ServletConfig. That no longer applies, but servlet containers still will only call your no-arg constructor. So you won't have access to a ServletConfig or ServletContext.

 

Request for Solution File

Ask an Expert for Answer!!
JAVA Programming: can we use the constructor instead of init to
Reference No:- TGS0416153

Expected delivery within 24 Hours