Advertisement
Guest User

Untitled

a guest
Oct 31st, 2018
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. # Enabling H2 Console
  2. spring.h2.console.enabled=true
  3. spring.h2.console.path=/h2
  4. spring.datasource.name=app_db
  5. spring.datasource.driverClassName=org.h2.Driver
  6. spring.jpa.database-platform=org.hibernate.dialect.H2Dialect
  7. spring.datasource.url=jdbc:h2:file:./data/app_db;INIT=create schema if not exists productslist\\;SET SCHEMA productslist;DB_CLOSE_ON_EXIT=FALSE
  8. spring.datasource.username=root
  9. spring.datasource.password=root
  10. spring.jpa.hibernate.ddl-auto = create
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement