web-zuul-local.properties 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. # 网管 服务配置
  2. server.port = 8900
  3. # 注册是使用真实IP
  4. eureka.instance.preferIpAddress = true
  5. # 开启调试信息
  6. endpoints.sensitive = true
  7. endpoints.info.enabled = true
  8. endpoints.restart.enabled = false
  9. endpoints.shutdown.enabled = false
  10. endpoints.health.enabled = true
  11. endpoints.flyway.enabled = false
  12. endpoints.logfile.enabled = true
  13. #出现错误时, 直接抛出异常
  14. spring.mvc.throw-exception-if-no-handler-found=true
  15. #不要为我们工程中的资源文件建立映射
  16. spring.resources.add-mappings=false
  17. #log级别
  18. logging.level.root = INFO
  19. logging.level.cn.efunbox.afw.web.mvc.interceptor.AbstractRequestBodyInterceptor = DEBUG
  20. logging.level.cn.efunbox.api.impl = DEBUG
  21. #此配置建议只试用开发和测试环境
  22. #心跳间隔时间,默认是30秒
  23. eureka.instance.leaseRenewalIntervalInSeconds = 30
  24. #最后一次心跳时间后leaseExpirationDurationInSeconds秒就认为是下线了,默认是90秒
  25. eureka.instance.leaseExpirationDurationInSeconds = 90
  26. ## eureka客户端配置
  27. # 是否启用 eureka
  28. eureka.client.enabled = true
  29. # eureka 地址
  30. eureka.client.serviceUrl.defaultZone = http://127.0.0.1:8821/eureka/
  31. # 当前服务 是否注册到eureka
  32. eureka.client.register-with-eureka = true
  33. #是否 从 eureka服务器获取注册信息
  34. eureka.client.fetch-registry = true
  35. ## redis 配置
  36. #spring.redis.host=192.168.1.86
  37. #spring.redis.hostName=192.168.1.86
  38. #spring.redis.port=6379
  39. #spring.redis.password=otttest
  40. spring.redis.host=192.168.1.151
  41. spring.redis.hostName=192.168.1.151
  42. spring.redis.port=6379
  43. spring.redis.password=
  44. spring.redis.timeout=3000
  45. spring.redis.pool.max-idle=8
  46. spring.redis.pool.min-idle=0
  47. spring.redis.pool.max-active=8
  48. spring.redis.pool.max-wait=-1
  49. spring.redis.key.prefix= web.zuul
  50. spring.cloud.loadbalancer.retry.enabled=true
  51. #断路器的超时时间,断路器的超时时间需要大于ribbon的超时时间,不然不会触发重试。
  52. hystrix.command.default.execution.isolation.thread.timeoutInMilliseconds=100000
  53. #ribbon请求连接的超时时间
  54. ribbon.ConnectTimeout=2500
  55. #请求处理的超时时间
  56. ribbon.ReadTimeout=3000
  57. #对所有操作请求都进行重试
  58. ribbon.OkToRetryOnAllOperations=true
  59. #对当前实例的重试次数
  60. ribbon.MaxAutoRetries=1
  61. #对下个实例的重试次数
  62. ribbon.MaxAutoRetriesNextServer=1
  63. #kafka配置
  64. kafka.host=192.168.1.18:9092