In Spring Boot, which of the following tools can be used for database migration?
- Flyway
- Spring Boot Actuator
- Spring Boot CLI
- Spring Boot Initializer
In Spring Boot, Flyway is a popular tool used for database migration. It allows developers to version-control their database schema and apply changes to the database in a controlled and repeatable manner. While Spring Boot CLI, Spring Boot Actuator, and Spring Boot Initializer are useful in Spring Boot applications, they are not specifically designed for database migration tasks like Flyway.
Loading...
Related Quiz
- In a Spring application with multiple security configurations, how would you ensure that the security annotations on service methods are evaluated in the correct order to enforce the intended security constraints?
- In Spring Boot, which annotation is used to conditionally enable caching only when a certain property is set?
- To create a simple unit test in Spring Boot, you can use the _____ annotation to load a minimal test context.
- In Spring Boot, how do you handle conflicts between properties defined in the application properties file and environment variables?
- Which annotation in Spring Boot is used to indicate that a class should be considered as a candidate for creating beans?