Configuring H2 Database in Spring Boot In this article, we will learn how to configure an H2 database in a Spring Boot application. H2 is an open-source, in-memory, Java SQL database. It is very lightweight and its small footprint makes it suitable for use in embedded applications. We will also learn how to access the H2 console to view and manipulate the data stored in the database. Introductio..