JSP Question:
Download Questions PDF

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

Java JSP Programming Interview Question
Java JSP Programming Interview Question

Answer:

Yes , of course you can use the constructor instead of init(). There’s nothing to stop you. But you shouldn’t. The original reason for init() was that ancient versions of Java couldn’t dynamically invoke constructors with arguments, so there was no way to give the constructur 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.

Download Java JSP Programming Interview Questions And Answers PDF

Previous QuestionNext Question
What are the two kinds of comments in JSP and what's the difference between them?How can a servlet refresh automatically if some new data has entered the database?