H2 Db in Spring
Can use an inmemory database, normally H2
Normally not used in production, but useful for tests/local usage
In Spring
When starting Spring, we get a line similar to
In the browser, you can access the H2 console, by going to
http://localhost:8080/h2-console
Or what ever port you set in the properties
To access the database, copy the address, into browser form, and test connection, the connect.
Last updated