1.

How To Connect To H2 Database During Development/testing Using Spring-boot?

Answer»
  • OFTEN times during development we would want to look inside the database to view the schema or data.
  • H2 is a perfect choice for in-memory databases during testing SINCE we do not have to install the database.
  • Spring-boot provides a CONVENIENT way to HOOK up the H2 database. All we need to do is provide the dependency in pom.xml.



Discussion

No Comment Found