The H2 database is an in-memory database and is generally used for unit testing or POC purposes. Spring Boot provides excellent integration support for H2 using simple properties configuration. To make itself even more helpful, H2 also provides a console view to maintain and interact with the database tables and data using the GUI interface.
1. Maven
To use H2 in the Spring boot application, we need to add the H2 runtime jar into dependencies. The best way to add is through Maven. The version is maintained by Spring Boot’s BOM file, so we can skip it.
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<scope>runtime</scope>
</dependency>
2. H2 Connection Properties
Spring provides effortless configuration options to connect to any database using properties. Below are the configuration properties, we shall have in application.properties
file for the most straightforward H2 configuration.
spring.datasource.url=jdbc:h2:mem:testdb;DB_CLOSE_ON_EXIT=TRUE
spring.datasource.driverClassName=org.h2.Driver
spring.datasource.username=sa
spring.datasource.password=
spring.h2.console.enabled=true
spring.h2.console.path=/h2-console
spring.h2.console.settings.trace=false
spring.jpa.database-platform=org.hibernate.dialect.H2Dialect
Please note by default, spring boot configures the in-memory database connection with the username 'sa'
and an empty password. If you wish to change the username and password, override them in the above properties options.
3. Persisting Database Changes Permanently
By default, the in-memory databases are volatile, and all stored data will be lost when we restart the application. In this case, data is written in temporary memory, and as soon as JVM is stopped, data is flushed.
To have a persistent data store capable of storing data between application start/stop, we should hold the data in files. For this change the spring.datasource.url
property.
spring.datasource.url = jdbc:h2:file:/temp/data/testdb
# Also disable the automatic schema generation on application start
spring.datasource.initialization-mode=never
See Also: H2 Database Connection URLs
4. Initializing Schema and Data at Startup
In Spring Boot, by default, SQL database initialization is only performed when using an embedded in-memory database.
Script-based DataSource initialization is performed, by default, before any JPA EntityManagerFactory beans are created. So when using Hibernate, it is recommended to set ‘spring.jpa.defer-datasource-initialization‘ property to ‘false‘. It will make sure that DML statements are executed after the Hibernate (EntityManagerFactory bean) has been initialized properly.
spring.jpa.defer-datasource-initialization=true
Finally, the schema.sql can be used to create the schema for JPA-managed entities, and data.sql can be used to populate it.
DROP TABLE IF EXISTS TBL_EMPLOYEES;
CREATE TABLE TBL_EMPLOYEES (
id INT AUTO_INCREMENT PRIMARY KEY,
first_name VARCHAR(250) NOT NULL,
last_name VARCHAR(250) NOT NULL,
email VARCHAR(250) DEFAULT NULL
);
INSERT INTO TBL_EMPLOYEES (first_name, last_name, email) VALUES
('Lokesh', 'Gupta', 'abc@gmail.com'),
('Deja', 'Vu', 'xyz@email.com'),
('Caption', 'America', 'cap@marvel.com');
5. Display SQL Logs
To display trace information for executed SQL statements in the H2 database, we can use the property: ‘spring.h2.console.settings.trace‘.
spring.h2.console.settings.trace=true
6. Accessing H2 Console on Browser
6.1. Enabling H2 Console
By default, the console view of the H2 database is disabled. We must enable it to view and access it in the browser. Note that we can customize the URL of the H2 console, which, by default, is '/h2'
.
spring.h2.console.enabled=true
spring.h2.console.path=/h2-console
6.2. Accessing H2 Console
Start the spring boot application and access the console in the browser with this URL : http://localhost:8080/h2
.
We can see the console like this.

Now enter the configured username and password. We can verify the table structure and default data inserted through SQL files.

6.3. Enable Remote Access
We can enable/disable the remote access of the H2 console using the property ‘spring.h2.console.settings.web-allow-others‘. By default, its value is false
.
spring.h2.console.settings.web-allow-others=false
7. Conclusion
In this Spring Boot H2 example, we learned to configure, initialize and access the H2 database through a Spring Boot application using simple properties configuration options.
Happy Learning !!
Comments