can we create more than ServletContext and ServletConfig in
your application
Answers were Sorted based on User's Feedback
Answer / narendhersharma
ServletContext which is managed by webcontainer, For the
whole web application only one servletcontext will be
there...
In ServletConfig , this is also managed by webcontainer,
for every request object one servletconfig object will be
there..
| Is This Answer Correct ? | 19 Yes | 4 No |
Answer / sunstar
Servlet Context is used per Web apllication so we can't use
more than one Context,Servlet Config is per servlet or per
Jsp so you can use the more than one Config.....:-)
| Is This Answer Correct ? | 10 Yes | 0 No |
Answer / naresh
We can not have more than one servletContext in a web
application, but we can have more than one servletConfig
provided there is more than one servlet in the web
application...
| Is This Answer Correct ? | 10 Yes | 0 No |
Answer / ravi ranjan kumar rajnish
No, In case of ServletContext Bcoz there is one
ServletContext is for one for whole application.
But yes in case of ServletConfig, bcoz servletconfig is
servlet specific so it can more than one
| Is This Answer Correct ? | 9 Yes | 4 No |
Answer / vishal kumar
yes we can create more than one servletcontext for an
application.in case of distributed application,
application's part are deployed on different application
server so in this case every part of application has
different servlet context.so as a whole application consist
many servlet contect.
| Is This Answer Correct ? | 3 Yes | 2 No |
Answer / ravikiran.chd
no one servlet context per web application we can generate
multiple servlet config objects
| Is This Answer Correct ? | 2 Yes | 4 No |
What methods do you use in servlet - applet communication?
What is forward() and include() of servlets RequestDispatcher interface?
java.lang.IllegalArgumentException: The path of an ForwardConfig cannot be null while working with struts it displayed pls very ungent
Is dispatcher servlet a singleton?
What are the life cycle methods of a servlet?
What are the life cycle methods of the servlet?
What is the effective way to make sure all the servlets are accessible only when user has a valid session?
What are the difference between session and cookies in servlet? Explain
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 exactly is a servlet?
What do you mean by session tracking?
What is called servlet mapping?