what is the difference between doGet() and doPost() in term of the flow?
the difference in term of the flow, i know that doGet() is the pre-processing and dopost is post-processing, but what is that? Actually, the methods are nothing to do with “pre-processing” and “post-processing”. To understand what the methods are for, you need some basic understand of the HTTP protocol. HTTP is a request-reply protocol: the … Read more