H2database is an open source database written in the Java language, typically used as a data store for games, and of course Web projects are available, and Web projects can use the database
To install the H2 database first
http://www.h2database.com/
Configure the link and load drivers to the Jdbc.properties file
First connection via TCP/IP server
Jdbc.driverclassname=org.h2.driver jdbc.url=jdbc\:h2\:tcp\://server address \:9092/~/database name; Mvcc\=true
Jdbc.username=sa
jdbc.password=
The second way to connect an embedded local connection
Jdbc.driverclassname=org.h2.driver
Jdbc.url=jdbc:h2:~/localh2database; Mvcc\=true
Jdbc.username=sa
jdbc.password=
Description: When mvcc\=true can allow multiple users to connect to H2 database at the same time, the default user name is null for the SA password
It is recommended to use Dbeaver to manage the H2 database
embeded new embedded to local database connection
Server New Remote Connection database
This is embeded.
This is server mode.