Which Spring Boot feature is commonly used to automate the database schema creation and update process?

  • Spring Data JPA
  • Spring Database Migrations
  • Spring Boot Auto-Config
  • Spring Hibernate
Spring Data JPA is commonly used in Spring Boot applications to automate the database schema creation and update process. It provides a high-level, object-oriented interface for interacting with databases and generates SQL statements for schema changes automatically. While the other options may interact with databases, they are not specifically designed for automating schema changes in the same way Spring Data JPA does.
Add your answer
Loading...

Leave a comment

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