123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- gyee:
- # 实时适配器的url
- adapter-url: http://10.155.32.4:8011
- # 数据准备保存路径(原始数据)
- file-path-prepare: data/prepare/
- # 数据处理保存路径(处理后的数据)
- file-path-process: data/precess/
- # 数据拟合保存路径(拟合后的数据)
- file-path-fitting: data/fitting/
- # 数据压缩下载
- file-path-download: data/zip/
- # 功率曲线离线数据保存路径
- file-path-power: data/power/
- # 数据准备时由于数据量太大,初始一个默认间隔,用于适配器取数
- interval: 20
- # 当前是否是离线环境
- off-line: false
- # 是否实时计算五损数据 true:连接实时数据库按天计算 false:使用离线数据按月计算
- real-time-cal: false
- server:
- port: 9002
- servlet:
- encoding:
- charset: utf-8
- force: true
- enabled: true
- max-http-header-size: 4048576
- spring:
- servlet:
- multipart:
- max-file-size: 2048MB
- max-request-size: 2048MB
- main:
- allow-bean-definition-overriding: false #当遇到同样名字的时候,是否允许覆盖注册
- datasource:
- type: com.alibaba.druid.pool.DruidDataSource
- # 宁夏三区oracle
- # driver-class-name: oracle.jdbc.OracleDriver
- # url: jdbc:oracle:thin:@192.168.1.105:1521:gdnxfd
- # username: nxfdprod
- # password: gdnxfd123
- # 华为云oracle(功率预测的环境)
- driver-class-name: oracle.jdbc.OracleDriver
- url: jdbc:oracle:thin:@120.46.129.85:1521:ORCL
- username: gyee
- password: FRWIND
- # 本地sql-lite
- # driver-class-name: org.sqlite.JDBC
- # url: jdbc:sqlite::resource:gdnx.db
- # username:
- # password:
- druid:
- # 初始化大小,最小,最大
- initial-size: 1
- min-idle: 1
- max-active: 1
- max-wait: 60000
- # 每次使用连接时进行校验,会影响系统性能。默认为false
- test-on-borrow: false
- test-on-return: false
- # 验证使用的SQL语句
- validation-query: SELECT 1
- # 指明连接是否被空闲连接回收器(如果有)进行检验.如果检测失败,则连接将被从池中去除
- while: true
- # 每30秒运行一次空闲连接回收器(默认-1)
- time-between-eviction-runs-millis: 60000
- # 池中的连接空闲30分钟后被回收(默认30分钟)
- min-evictable-idle-time-millis: 1800000
- ####################Mybatis Plus配置####################
- mybatis-plus:
- configuration:
- map-underscore-to-camel-case: true # 数据库下划线自动转驼峰标示关闭
- # log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
- ####################Mybatis Plus配置####################
- logging:
- level:
- root: info
- com.example: info
- file:
- path: ./logs
- uniformcode:
- power: AI130 #功率
- speed: AI022 #风速
- rr: AI128 #转速
- mxzt: ZTMX #风机状态
- dl: RFDL #电量
- qfzt: RSSQFZT #欠发状态
- fx: AI008 #风向
- dfwc: AI036 #对风误差
- angle: AI034 #偏航角度
- hjwd: AI056 #环境温度
- yp1: AI085 #叶片1
- yp2: AI086 #叶片2
- yp3: AI087 #叶片3
|