What method is used to create database connection in
servlets?
Answer Posted / raghu
DataSource.getConnection()
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
What is a web container and what is its responsibility?
What do you mean by scope object and what are its types?
What are some disadvantages of storing session state in cookies?
Can you refresh servlet in client and server-side automatically?
What is the difference between Difference between doGet() and doPost()?
How do you load an image in a Servlet?
What is servlet in tomcat?
What are different Authentication options available in Servlets.
What are Servlets?
What's the difference between authentication and authorization?
When a servlet accepts a call from a client, it receives two objects. What are they?
What is servlet container. how it works?
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 session?
A client sends requests to two different web components. Both of the components access the session. Will they end up using the same session object or different session ?