123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- server:
- port: 6060
- servlet:
- context-path: /
- spring:
- application:
- name: run-economy
- main:
- allow-bean-definition-overriding: true #当遇到同样名字的时候,是否允许覆盖注册
- # cloud:
- # nacos:
- # discovery:
- # server-addr: 10.81.3.155:8848
- # #指定yaml格式的配置
- # file-extension: yaml
- # cluster-name: master
- # username: nacos
- # password: nacos
- #redis集群
- redis:
- #host: 127.0.0.1
- host: 124.70.18.168
- port: 6379
- timeout: 100000
- # 集群环境打开下面注释,单机不需要打开
- # cluster:
- # #集群信息
- # nodes: 10.83.68.151:6379,10.83.68.152:6379,10.83.68.153:6379,10.83.68.154:6379,10.83.68.155:6379,10.83.68.156:6379,10.83.68.157:6379,10.83.68.158:6379,10.83.68.159:6379
- # #默认值是5 一般当此值设置过大时,容易报:Too many Cluster redirections
- # maxRedirects: 3
- password: gdnxfd123
- application:
- name: test
- jedis:
- pool:
- max-active: 8
- min-idle: 0
- max-idle: 8
- max-wait: -1
- database: 0
- autoconfigure:
- exclude: org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration,org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration
- datasource:
- type: com.alibaba.druid.pool.DruidDataSource
- driver-class-name: org.postgresql.Driver
- url: jdbc:postgresql://124.70.75.91:5432/jn_test #IMS_NEM_SD
- username: postgres
- password: gd123
- #华为云测试地址
- # url: jdbc:postgresql://124.70.75.91:5432/jn_test #IMS_NEM_SD
- # username: postgres
- # password: gd123
- oracle-schema=:
- # type: com.alibaba.druid.pool.DruidDataSource
- # url: jdbc:mysql://127.0.0.1:3306/test?characterEncoding=utf8&serverTimezone=UTC
- # username: root
- # password: root
- # driver-class-name: com.mysql.jdbc.Driver
- druid:
- max-active: 20
- initial-size: 1
- min-idle: 3
- max-wait: 60000
- time-between-eviction-runs-millis: 60000
- min-evictable-idle-time-millis: 300000
- test-while-idle: true
- test-on-borrow: false
- test-on-return: false
- servlet:
- multipart:
- # 开启 multipart 上传功能
- enabled: true
- # 文件写入磁盘的阈值
- file-size-threshold: 2KB
- # 最大文件大小
- max-file-size: 200MB
- # 最大请求大小
- max-request-size: 215MB
- mybatis-plus:
- configuration:
- map-underscore-to-camel-case: true
- auto-mapping-behavior: full
- log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
- default-enum-type-handler: org.apache.ibatis.type.EnumOrdinalTypeHandler
- mapper-locations: classpath*:mapper/**/*Mapper.xml
- global-config:
- # 逻辑删除配置
- db-config:
- #id-type: auto
- # 删除前
- logic-not-delete-value: 1
- # 删除后
- logic-delete-value: 0
- #table-prefix: t_
- id-type: assign_uuid
- #配置类型别名对应的包
- type-aliases-package: com.gyee.runeconomy.model.auto
- #用于扫描通用枚举包
- type-enums-package: com.gyee.runeconomy.config
- logging:
- level:
- root: info
- com.example: debug
- initialcode: INITIAL
- db:
- url: http://127.0.0.1:8011/ts
- #url: http://192.168.11.250:8011/ts
- runWindpowerstation: SD_GDDL_RZLX_FDC_STA,SD_GDDL_QDJN_FDC_STA,SD_GDDL_WHWD_FDC_STA,SD_GDDL_WHXQ_FDC_STA,SD_GDDL_RZWL_FDC_STA,SD_GDDL_WFZC_FDC_STA,SD_GDDL_DZXJ_FDC_STA,SD_GDDL_XTTA_FDC_STA,SD_LYDL_BH1_FDC_STA,SD_LYDL_BH2_FDC_STA,SD_LYDL_CG_FDC_STA,SD_LYDL_FJ_FDC_STA,SD_LYDL_YS_FDC_STA,SD_SXNY_FXFC_FDC_STA,SD_SXNY_JNSS_FDC_STA,SD_SXNY_WFBH_FDC_STA,SD_SXNY_PLHS_FDC_STA,SD_SXNY_JNCQ_FDC_STA,SD_SXNY_LXLN_FDC_STA,SD_SXNY_LQJS_FDC_STA,SD_SXNY_ZYXD_FDC_STA,SD_SXNY_ZYFS_FDC_STA,SD_GHTZ_HZJ_GDC_STA
|