Advertisement
Guest User

Untitled

a guest
Jul 16th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. spring:
  2. jpa:
  3. database: mysql
  4. generate-ddl: false
  5. hibernate:
  6. ddl-auto: validate
  7. show-sql: true
  8. datasource:
  9. hikari:
  10. jdbc-url: <your-jdbc-url>
  11. driver-class-name: com.mysql.jdbc.Driver
  12. username: <your-user-name>
  13. password: <your-password>
  14. maximum-pool-size: 5
  15. pool-name: hikari-cp
  16. connection-test-query: select 1
  17. max-lifetime: 180000
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement