Guest User

Untitled

a guest
Aug 16th, 2017
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.46 KB | None | 0 0
  1. # Spring settings
  2. spring:
  3. # Persistence
  4.   datasource:
  5.       url: jdbc:h2:~/h2-test;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=FALSE
  6.       platform: h2
  7.       username: sa
  8.       password:
  9.       driverClassName: org.h2.Driver
  10.   jpa:
  11.     hibernate:
  12.       ddl-auto: create-drop
  13.     properties:
  14.       hibernate:
  15.         show_sql: true
  16.         use_sql_comments: true
  17.         format_sql: true
  18.   # H2 database
  19.   h2:
  20.       console:
  21.         enabled: true
  22. path: /console
Add Comment
Please, Sign In to add comment