_____ is a technique used to minimize the overhead of opening and closing database connections in a Spring Boot application.

  • Aspect-oriented programming
  • Connection pooling
  • Data binding
  • Dependency injection
Connection pooling is a technique used to minimize the overhead of opening and closing database connections in a Spring Boot application. It involves creating a pool of pre-initialized database connections that can be reused, reducing the time and resources required to establish new connections each time a database interaction is needed.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *