application-dev.yml 867 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. spring:
  2. autoconfigure:
  3. exclude: com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure
  4. # feign 配置
  5. feign:
  6. sentinel:
  7. enabled: true
  8. okhttp:
  9. enabled: true
  10. httpclient:
  11. enabled: false
  12. client:
  13. config:
  14. default:
  15. connectTimeout: 10000
  16. readTimeout: 10000
  17. compression:
  18. request:
  19. enabled: true
  20. min-request-size: 8192
  21. response:
  22. enabled: true
  23. # 暴露监控端点
  24. management:
  25. endpoints:
  26. web:
  27. exposure:
  28. include: '*'
  29. # 本地文件上传
  30. file:
  31. domain: http://192.168.60.221:9300
  32. path: /home/siwei/uploadPath
  33. prefix: /statics
  34. shp:
  35. #入库的坐标系
  36. db_srid: 4326
  37. #面积计算坐标系
  38. area_srid: 4326
  39. #面积计算是否启用geography true启用 false不启用
  40. area_geography: true
  41. #输出坐标系
  42. out_srid: 4326