rokenny | 1d9a4a6 | 2019-04-09 20:34:44 +0000 | [diff] [blame^] | 1 | # Enabling H2 Console |
| 2 | spring.h2.console.enabled=true |
| 3 | spring.h2.console.path=/console |
| 4 | spring.datasource.url=jdbc:h2:mem:testdb;DB_CLOSE_ON_EXIT=FALSE |
| 5 | spring.datasource.username=admin |
| 6 | spring.datasource.password=admin |
| 7 | spring.datasource.driverClassName=org.h2.Driver |
| 8 | spring.jpa.hibernate.ddl-auto = update |
| 9 | spring.jpa.show-sql=true |
| 10 | logging.level.org.hibernate.SQL=DEBUG |
| 11 | logging.level.org.hibernate.type.descriptor.sql.BasicBinder=TRACE |
| 12 | |
| 13 | server.port=9081 |