Top "H2" questions

H2 is a relational database management system written in Java.

View content of embedded H2 database started by Spring

I would like to view in a web browser the content of the H2 database started by Spring thanks to …

spring h2
Tomcat doesn't stop. How can I debug this?

I have a Tomcat 7 running in Linux that I start via $CATALINA_HOME/bin/startup.sh and shutdown via $CATALINA_…

java linux multithreading tomcat h2
Where does H2's Embedded Databases Store the data?

So I just recently started learning about how databases work, how to use SQL ect. and decided to start implementing …

java database jdbc h2 embedded-database
Reset Embedded H2 database periodically

I'm setting up a new version of my application in a demo server and would love to find a way …

reset h2
Spring’s embedded H2 datasource and DB_CLOSE_ON_EXIT

For unit tests (call them integration tests if you want) I have configured an embedded database in my Spring config …

java spring h2
Simple H2 and Hibernate/JPA

Simple test with H2 as the database, JPA and Hibernate. Gives no discerning error, but it does not persist the …

hibernate jpa h2
Hibernate and H2 "Referential integrity constraint violation" for OneToMany bidirectional mapping

So I have two simple beans -- FatKid and Hamburgers. Now, for reasons unbeknownst to me I need to be …

hibernate foreign-keys one-to-many h2 bidirectional
How in H2DB get sql dump like in MySql?

I have some questions about H2DB. I have H2DB database which stores data in files, I have 3 files …

dump h2
H2: how to tell if table exists?

I'm trying to write Java code that checks to see if an H2 table exists: if it doesn't exist, it …

java sql jdbc h2
Starting an H2 Database Server from Maven?

Suppose I want to create and use an H2 database for my integration tests. Maven has a command to run …

maven testing h2