Guest User

Untitled

a guest
Sep 9th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. spring:
  2. cloud:
  3. config:
  4. uri: http://localhost:8888
  5.  
  6. application:
  7. name: payment-ms
  8.  
  9.  
  10. server:
  11. port: ${PORT:${SERVER_PORT:0}}
  12.  
  13. eureka:
  14. instance:
  15. instance-id: ${spring.application.name}:${vcap.application.instance_id:${spring.application.instance_id:${random.value}}}
  16.  
  17.  
  18. ---
  19.  
  20. spring:
  21. jpa:
  22. generate-ddl: true
  23. hibernate:
  24. ddl-auto: update
  25. show-sql: true
  26.  
  27. datasource:
  28. driver-class-name: com.mysql.jdbc.Driver
  29. username: admin
  30. password: admin
  31. url: jdbc:mysql://localhost:3306/ibm
  32. jta:
  33. narayana:
  34. default-timeout: 20
  35.  
  36. ---
  37.  
  38. spring:
  39. cloud:
  40. stream:
  41. bindings:
  42. paymentsChannel:
  43. binder: rabbit
  44. destination: payment.ibm.exchange
  45. content-type: application/json
  46. group: noidagroup
Add Comment
Please, Sign In to add comment