I was wondering about these servlet methods. i know something about these methods like
doPost
has no limitations on paramater numbers whiledoGet
has.doGet
is faster thandoPost
.doPost
is secured thandoGet
.
And my question is, as these methods takes same parameters and does the process which we implement. then what is the major difference
between these methods and At which specific situation each of this method is used to process
.