Advertisement
Guest User

Untitled

a guest
Jan 30th, 2018
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.42 KB | None | 0 0
  1. spring:
  2. application:
  3. name: hockeyseer
  4. profiles:
  5. active: development
  6. devtools:
  7. restart:
  8. enabled: true
  9. livereload:
  10. enabled: true
  11. datasource:
  12. type: com.zaxxer.hikari.HikariDataSource
  13. driver-class-name: com.mysql.jdbc.Driver
  14. url: jdbc:mysql://localhost/hockerseer?useUnicode=true&characterEncoding=utf8&useSSL=false
  15. username: root
  16. password:
  17. hikari:
  18. data-source-properties:
  19. cachePrepStmts: true
  20. prepStmtCacheSize: 250
  21. prepStmtCacheSqlLimit: 2048
  22. useServerPrepStmts: true
  23. jpa:
  24. database-platform: org.hibernate.dialect.MySQL5InnoDBDialect
  25. database: MYSQL
  26. show-sql: true
  27. format-sql: true
  28. hibernate:
  29. dialect: org.hibernate.dialect.MySQL5InnoDBDialect
  30. ddl-auto: create-drop
  31. naming:
  32. physical-strategy: org.springframework.boot.orm.jpa.hibernate.SpringPhysicalNamingStrategy
  33. implicit-strategy: org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy
  34. properties:
  35. hibernate.id.new_generator_mappings: true
  36. hibernate.cache.use_second_level_cache: false
  37. hibernate.cache.use_query_cache: false
  38. hibernate.generate_statistics: true
  39. server:
  40. port: 9000
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement