Guest User

Untitled

a guest
Nov 6th, 2017
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. ...
  2. dataSource:
  3. pooled: true
  4. jmxExport: true
  5. driverClassName: com.mysql.jdbc.Driver
  6. dialect: org.hibernate.dialect.MySQL5InnoDBDialect
  7. username: "root"
  8. password: ""
  9.  
  10. environments:
  11. development:
  12. server:
  13. port: 8090
  14. dataSource:
  15. dbCreate: create-drop
  16. url: "jdbc:mysql://localhost/db_name?useUnicode=yes&characterEncoding=UTF-8"
  17. username: "root"
  18. password: ""
  19. test:
  20. dataSource:
  21. dbCreate: update
  22. url: "jdbc:mysql://localhost/db_name_prod?useUnicode=yes&characterEncoding=UTF-8"
  23. username: "root"
  24. password: ""
  25. production:
  26. dataSource:
  27. dbCreate: none
  28. url: "jdbc:mysql://localhost/db_name_prod?useUnicode=yes&characterEncoding=UTF-8"
  29. username: "root"
  30. password: ""
  31. ...
Add Comment
Please, Sign In to add comment