What is meant by Servelet? What are the parameters of service
method?
Answers were Sorted based on User's Feedback
Answer / madhu
servlet is a java program which provides implementation of sevlet interface which is in javax.servlet package directly or indirectly.
parameters of service is HttpServletRequest request,HttpServletResponnse respone.
request and response are objects of classes which provides the implementation of HttpServletRequest,HttpServletResponse.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / aruna raman
A servlet is a Java programming language class used to
extend the capabilities of servers that host applications
accessed via a request-response programming model.
Although servlets can respond to any type of request, they
are commonly used to extend the applications hosted by Web
servers. For such applications, Java Servlet technology
defines HTTP-specific servlet classes.
init()
service()
getServletConfig()
getServletInfo()
destroy()
| Is This Answer Correct ? | 1 Yes | 0 No |
what is object slice?
Does a class inherit the constructors of its superclass in java programming?
What are strings in physics?
When should I use stringbuffer?
Java.util.regex consists of which classes?
What is valid keyword in java?
what is difference between front controller and action servlet?
What is time complexity algorithm?
Can an object subclass another object?
What is java in layman terms?
How do you write a conditional statement?
What is the reason that multiple inheritance is not possible in java??