what is servlet and what you get when we use servlets?
Answer Posted / sheetal
Servlets are modules that extend request/response-oriented
servers,such as Java-enabled web servers. For example, a
servlet might be responsible for taking data in an HTML
order-entry form and applying the business logic used to
update a company’s order database. Servlets are to servers
what applets are to browsers. Unlike applets, however,
servlets have no graphical user interface.
| Is This Answer Correct ? | 18 Yes | 4 No |
Post New Answer View All Answers
How forward () method is different from send redirect () method?
What do you mean by url pattern in servlet?
Once the destroy() method is called by the container, will the servlet be immediately destroyed? What happens to the tasks(threads) that the servlet might be executing at that time?
Why session tracking is needed?
What is the use of send redirect () method?
Which application server is best for java?
What are the phases of servlet life cycle?
How httpservlet is different from the genericservlet?
What is difference between server and servlet?
How can I send user authentication information while making URL Connection?
What is pure servlet?
What is the difference between the getrequestdispatcher(string path) method of javax.servlet.servletrequest interface and javax.servlet.servletcontext interface?
What are the functions of an intercepting filter?
What is the difference between using getSession(true) and getSession(false) methods?
What is the difference between 2 types of servlets?