北斗定位
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

73 lines
1.6KB

  1. logging:
  2. config: classpath:log/logback-spring.xml
  3. level:
  4. com:
  5. telpo:
  6. dipperposition:
  7. server: debug
  8. common: debug
  9. service: debug
  10. handler: debug
  11. spring:
  12. application:
  13. name: dipperposition-service
  14. redis:
  15. database: 1
  16. host: 172.16.192.26
  17. port: 8090
  18. password: telpo#1234
  19. timeout: 3000
  20. lettuce:
  21. pool:
  22. max-active: 100 # 连接池最大连接数(使用负值表示没有限制)
  23. max-idle: 100 # 连接池中的最大空闲连接
  24. min-idle: 50 # 连接池中的最小空闲连接
  25. max-wait: 6000 # 连接池最大阻塞等待时间(使用负值表示没有限制)
  26. scheduler:
  27. pool:
  28. size: 2
  29. #等待任务完成退出最大秒数
  30. await-seconds: 600
  31. task:
  32. cron: "0 0 1 * * ?"
  33. pos:
  34. centerProvinceFilePath: /csv/provinceLonAlt.csv
  35. ipPositionRequestPath: https://restapi.amap.com/v3/ip
  36. ipPositionRequestKey: 65e794b0a1a4b87eeec86f93fea05411
  37. centerProvince: 湖北省
  38. ast:
  39. server: agnss.techtotop.com
  40. ephAstPort: 8012
  41. ephAstHexPort: 9012
  42. timeout: 30000
  43. position-server:
  44. serverAddr: localhost
  45. timeAsycPort: 9011
  46. posAsycPort: 9013
  47. starsAsycPort: 9012
  48. mongo:
  49. datasource:
  50. dblist:
  51. - uri: mongodb://wangjx:wangjx#1234@172.16.192.26:27017/basicdata
  52. database: basicdata
  53. - uri: mongodb://wangjx:wangjx#1234@172.16.192.26:27017/common
  54. database: common
  55. OkHttp-config:
  56. pool:
  57. max-conn: 200
  58. keep-alive: 5
  59. read-timeout: 10
  60. conn-timeout: 10
  61. write-timeout: 10
  62. async:
  63. pool:
  64. corePoolSize: 4
  65. maxPoolSize: 8
  66. queueCapacity: 5000