How doGet() or doPost method invokes service() method internally

后端 未结 3 748
遇见更好的自我
遇见更好的自我 2020-12-11 11:08

In servlet program we are calling the doGet() or doPost() method but in the servlet life cycle says that all requests will be redirected to s

3条回答
  •  悲&欢浪女
    2020-12-11 11:36

    Any service method have not overridden will be delighted to the service method of super class implementation is called by the servlet container.

提交回复
热议问题