application properties for using h2 in memory db

Solutions on MaxInterview for application properties for using h2 in memory db by the best coders in the world

showing results for - "application properties for using h2 in memory db"
Thiago
09 May 2018
1spring.datasource.url=jdbc:h2:mem:testdb
2spring.datasource.driverClassName=org.h2.Driver
3spring.datasource.username=sa
4spring.datasource.password=
5spring.jpa.database-platform=org.hibernate.dialect.H2Dialect
6