what is the difference between ServletContext and
ServletConfig
Answer Posted / saikiran
the scope of ServletConfig is With in the servlet
ServletContext is with in webApplication.
ServletConfig is an name and value pairs
it consist of
servletName,InitializationParameters,servletContext
ServletContext:
---------------
the application which is being deployed in the
server...
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
How we can create war file in servlet?
What are the features added in Servlet 2.5?
What are life cycle methods of a servlet?
What is the life cycle of a servlet?
What is the purpose of requestdispatcher interface?
How do you invoke a servelt?
What is difference between GenericServlet and HttpServlet?
what do you understand by url rewriting?
What is called a session?
What is the main purpose of java servlets?
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!
What is the difference between Servlets and Applets?
How can we refresh automatically when new data has entered the database?
What is the use of httpservletresponsewrapper?
What do you mean by request dispatcher in servlet?