Advertisement
Guest User

Untitled

a guest
Nov 27th, 2018
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. server:
  2. servlet:
  3. context-path: /api
  4.  
  5. spring:
  6. datasource:
  7. driver-class-name: com.mysql.cj.jdbc.Driver
  8. username: root
  9. password: example
  10. url: jdbc:mysql://localhost:3307/scoop-organizations?nullNamePatternMatchesAll=true&useSSL=false
  11. jpa:
  12. hibernate:
  13. ddl-auto: none
  14. properties:
  15. hibernate:
  16. dialect: org.hibernate.dialect.MySQLDialect
  17. liquibase:
  18. change-log: classpath:liquibase/db-changelog-master.xml
  19.  
  20. eureka:
  21. client:
  22. serviceUrl:
  23. defaultZone: http://localhost:9000/eureka
  24. register-with-eureka: true
  25. fetch-registry: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement