How does a servlet container typically interact with a connection pool?
- It delegates management to the application.
- It directly manages the pool.
- It doesn't interact with connection pools.
- It relies on the database server for connection management.
In a typical scenario, a servlet container directly manages the connection pool, ensuring efficient utilization and management of database connections within the application.
Loading...
Related Quiz
- How can input sanitization be ineffective against certain advanced XSS attacks?
- How can stale or broken database connections in the pool be handled effectively?
- What does thread-safe mean in the context of servlets?
- What is the purpose of the AsyncContext in asynchronous servlets?
- To pass the request and response to the next entity in the chain, the filter uses the __________ method.