servlet基本知识

service方法:用于处理浏览器的请求

      如果service方法中,有super.service(req,resp)语句,则会再次调用doPost方法或者doGet方法

doPost方法:用于处理post请求

doGet方法:用于处理get请求

原文地址:https://www.cnblogs.com/lsy-lsy/p/10949920.html