Advertisement
Guest User

Untitled

a guest
Dec 17th, 2017
322
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. # ===============================
  2. # = DATA SOURCE
  3. # ===============================
  4.  
  5. # Set here configurations for the database connection
  6. #DB Management
  7. #lisqlme@gmail.com
  8. #lisqlmeadmin
  9.  
  10. spring:
  11. datasource:
  12. # url: jdbc:mysql://sql11.freemysqlhosting.net:3306/sql11209663?createDatabaseIfNotExist=true&useUnicode=yes&characterEncoding=UTF-8
  13. # username: sql11209663
  14. # password: kan4wNnVVj
  15. url: jdbc:mysql://localhost:3306/lime?createDatabaseIfNotExist=true&useUnicode=yes&characterEncoding=UTF-8
  16. username: root
  17. password: test
  18. tomcat:
  19. test-while-idle: true
  20. validation-query: SELECT 1
  21. max-wait: 20000
  22. max-active: 50
  23. max-idle: 20
  24. min-idle: 15
  25. jpa:
  26. show-sql: true
  27. hibernate:
  28. ddl-auto: update
  29. naming.strategy: org.hibernate.cfg.ImprovedNamingStrategy
  30. properties:
  31. hibernate:
  32. dialect: org.hibernate.dialect.MySQL5Dialect
  33. server:
  34. port: 8080
  35. address: localhost
  36. session:
  37. timeout: 120
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement