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 do you get the ip address of the client in servlet?
What is a java servlet?
What is the type of method for sending request from http server?
How do you run a servlet?
If my browser does not support cookie, and my server sends a cookie instance what will happen?
Can you create a deadlock condition on a servlet?
What is servlet collaboration?
What is servlet name in web xml?
What is servlet invoker?
What are the uses of servlet
How can you start a jta transaction from a servlet deployed on jboss?
What methodology can be followed to store more number of objects in a remote server?
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 string tokenizer?
How can the session in servlet be destroyed?