h2 « JPA « Spring Q&A





1. understanding connection to h2 database    stackoverflow.com

I beg pardon for not doing homework on this issue and directly asking question but i need to understand what is the meaning of the connection string "jdbc:h2:h2db/database" in order to ...

2. glassfish and h2database problem    stackoverflow.com

I build an java based app. using hibernate JPA, spring and h2database. I using h2database in memory mode, here is the jdbc properties:

jdbc.url=jdbc\:h2\:mem\:test_db;DB_CLOSE_DELAY\=-1
jdbc.driverClassName=org.h2.Driver
jdbc.username=sa
jdbc.password=
This values I'm using in dataSource.xml like this:
<bean id="basicDataSource" ...

3. H2 in-memory database initialization with data    stackoverflow.com

I'm using H2 with Hibernate to generate in-memory DB on the fly for unit-testing. I managed to create the DB successfully, and everything is working ok. But I have an issue I don't ...

4. H2 database schema creation check    stackoverflow.com

I have H2 database generated on the-fly using Hibernate & Spring for my test-cases. I have few weird errors, and I would like to know exactly how the schema looks like in ...

5. Hibernate, Spring and H2    coderanch.com