What advantages do servlets have over CGI programs?
Answer Posted / ravikiran
cgi makes use of multiprocessing.Means each and every
request is processed by an individual process.where as
servlets make use of multithreading.A single process with
multiple threads to accomplish the particular task
| Is This Answer Correct ? | 9 Yes | 0 No |
Post New Answer View All Answers
What is the purpose of dispatcherservlet properties?
What is the effective way to make sure all the servlets are accessible only when user has a valid session?
What is the procedure of invoking different servlet in a different application?
How many servlet objects are created?
What is difference between PrintWriter and ServletOutputStream?
What is the type of method for sending request from http server?
How do you deal property files in servlet?
What is the process to implement doget and dopost methods?
Why do you use session tracking in httpservlet?
Which httpsession object is used to view and manipulate information about a session?
Is servlet thread safe?
If my browser does not support cookie, and my server sends a cookie instance what will happen?
What is the workflow of a servlet?
Why do we need a constructor in a servlet if we use the init method?
Can we use threads in Servlets?