What is the difference between GenericServlet, HttpServlet and a Servlet?

前端 未结 10 1739
抹茶落季
抹茶落季 2020-12-23 15:16

I was searching for exact difference between javax.servlet.http.HttpServlet , javax.servlet.GenericServlet and javax.Servlet unable to

10条回答
  •  南笙
    南笙 (楼主)
    2020-12-23 15:43

    All classes, interfaces, and methods present in the javax.servlet package are protocol independent (generic to all protocols).

    In contrast, all classes, interfaces, and methods present in the javax.servlet.http package are protocol dependent (specific to the HTTP protocol)

提交回复
热议问题