application.yaml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. gyee:
  2. # 实时适配器的url
  3. adapter-url: http://10.155.32.4:8011
  4. # 数据准备保存路径(原始数据)
  5. file-path-prepare: data/prepare/
  6. # 数据处理保存路径(处理后的数据)
  7. file-path-process: data/precess/
  8. # 数据拟合保存路径(拟合后的数据)
  9. file-path-fitting: data/fitting/
  10. # 数据压缩下载
  11. file-path-download: data/zip/
  12. # 功率曲线离线数据保存路径
  13. file-path-power: data/power/
  14. # 数据准备时由于数据量太大,初始一个默认间隔,用于适配器取数
  15. interval: 20
  16. # 当前是否是离线环境
  17. off-line: false
  18. # 是否实时计算五损数据 true:连接实时数据库按天计算 false:使用离线数据按月计算
  19. real-time-cal: false
  20. server:
  21. port: 9002
  22. servlet:
  23. encoding:
  24. charset: utf-8
  25. force: true
  26. enabled: true
  27. max-http-header-size: 4048576
  28. spring:
  29. servlet:
  30. multipart:
  31. max-file-size: 2048MB
  32. max-request-size: 2048MB
  33. main:
  34. allow-bean-definition-overriding: false #当遇到同样名字的时候,是否允许覆盖注册
  35. datasource:
  36. type: com.alibaba.druid.pool.DruidDataSource
  37. # 宁夏三区oracle
  38. # driver-class-name: oracle.jdbc.OracleDriver
  39. # url: jdbc:oracle:thin:@192.168.1.105:1521:gdnxfd
  40. # username: nxfdprod
  41. # password: gdnxfd123
  42. # 华为云oracle(功率预测的环境)
  43. driver-class-name: oracle.jdbc.OracleDriver
  44. url: jdbc:oracle:thin:@120.46.129.85:1521:ORCL
  45. username: gyee
  46. password: FRWIND
  47. # 本地sql-lite
  48. # driver-class-name: org.sqlite.JDBC
  49. # url: jdbc:sqlite::resource:gdnx.db
  50. # username:
  51. # password:
  52. druid:
  53. # 初始化大小,最小,最大
  54. initial-size: 1
  55. min-idle: 1
  56. max-active: 1
  57. max-wait: 60000
  58. # 每次使用连接时进行校验,会影响系统性能。默认为false
  59. test-on-borrow: false
  60. test-on-return: false
  61. # 验证使用的SQL语句
  62. validation-query: SELECT 1
  63. # 指明连接是否被空闲连接回收器(如果有)进行检验.如果检测失败,则连接将被从池中去除
  64. while: true
  65. # 每30秒运行一次空闲连接回收器(默认-1)
  66. time-between-eviction-runs-millis: 60000
  67. # 池中的连接空闲30分钟后被回收(默认30分钟)
  68. min-evictable-idle-time-millis: 1800000
  69. ####################Mybatis Plus配置####################
  70. mybatis-plus:
  71. configuration:
  72. map-underscore-to-camel-case: true # 数据库下划线自动转驼峰标示关闭
  73. # log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
  74. ####################Mybatis Plus配置####################
  75. logging:
  76. level:
  77. root: info
  78. com.example: info
  79. file:
  80. path: ./logs
  81. uniformcode:
  82. power: AI130 #功率
  83. speed: AI022 #风速
  84. rr: AI128 #转速
  85. mxzt: ZTMX #风机状态
  86. dl: RFDL #电量
  87. qfzt: RSSQFZT #欠发状态
  88. fx: AI008 #风向
  89. dfwc: AI036 #对风误差
  90. angle: AI034 #偏航角度
  91. hjwd: AI056 #环境温度
  92. yp1: AI085 #叶片1
  93. yp2: AI086 #叶片2
  94. yp3: AI087 #叶片3