application.yml 537 B

1234567891011121314151617181920212223
  1. spring:
  2. application:
  3. name: graphql-api
  4. server:
  5. port: 8080
  6. graphql:
  7. extended-scalars: BigDecimal, DateTime, Date
  8. servlet:
  9. exception-handlers-enabled: true
  10. # async-timeout: 500
  11. graphiql:
  12. enabled: true
  13. playground:
  14. enabled: true
  15. tools:
  16. schema-location-pattern: '**/graphqls/*.graphqls'
  17. rest:
  18. api:
  19. goods-endpoint: http://localhost:8081/goods/
  20. orders-endpoint: http://localhost:8082/orders/
  21. comments-endpoint: http://localhost:8082/comments/
  22. users-endpoint: http://localhost:8083/users/