what is the advantage of using Servlets over CGI programming?
Answer Posted / ravat
There is only one main difference between CGI and Servlet that CGI is not that much efficient as servlets ,because Wen each time request cames to CGI it ll start from first i.e loading,instantiation and ll consume more time but in the case of Servlet only once server is loaded and instance is created and it is reused to other request and wenever the new request cames just it ll make use of same object
| Is This Answer Correct ? | 3 Yes | 3 No |
Post New Answer View All Answers
Define the life cycle of a servlets.
Which is the methods of generated servlet?
What are the advantages of cookies?
How we can get ip address of client in servlet?
Tell us something about servletconfig interface.
How to get ip address in jsp login page and how to validate like 127.1.0.1 all should not be greater than 255
How can I send user authentication information while making URL Connection?
What are different ways for servlet authentication?
What are the disadvantages of storing session state in cookies?
Explain the difference between a web server and a web container?
What is servlet used for?
Hello, My project requirement is like I need to create a web page using MVC pattern. I hava a bean class, jsp page, servlet, service and dao. My jsp has two fields. One is dropdown list. The option values has to get populated from the database table. The other one is a text box and its value has to come from database table. As of now I have defined the fields in bean class, got the values from database using arraylists in dao class and I called this from service class. Can anyone please tell me the workflow of how the servlet will get this arraylist and populate the arraylist values as dropdown options in jsp page? Also I would like to know the role of bean class in MVC pattern? Thanks in advance!
Explain jsessionid and when is it created?
What are the functions of Servlet container?
What is the difference between sendredirect() and forward() in a servlet?