hi , if we want to write any servlet this should be extends from HttpServlet it is an abstract class but in our class we are not implementing any methods. and we are not declaring our class as abstract why it is.
Rahul Bhattacharjee
Ranch Hand
Joined: Nov 29, 2005
Posts: 2300
posted
0
Originally posted by vasanthrao kumarbabu: we are not declaring our class as abstract why it is.
There are no methods in HTTPServlet class which are abstract.So no need to declare the class abstract which is extending the HTTPServlet class.