123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- server:
- port: 8088
- servlet:
- context-path: /api
- spring:
- application:
- name: welampiot
- datasource:
- driver-class-name: com.mysql.cj.jdbc.Driver
- #数据库连接中数据源类型
- type: com.alibaba.druid.pool.DruidDataSource
- druid:
- url: jdbc:mysql://139.196.213.241:3306/welampiot?characterEncoding=utf-8&useSSL=false
- username: welampiot
- password: XPDejO2KMJ5WZB5a8G3oOIJPkibY1v3Vm9PDI2C+8DQM15FGGQUCGlLGAxiMbBMphX5HNNXy6iAbbZC9GkKzWw==
- initialSize: 5
- minIdle: 5
- maxActive: 100
- maxWait: 60000
- # encrypt config
- filters: config
- connect-properties:
- config.decrypt: true
- config.decrypt.key: MFwwDQYJKoZIhvcNAQEBBQADSwAwSAJBAI5wh9Y/+kW7LK1jgUTygp2wk5uVUucBheqNDeKPAKH/orx1r1GF4mcFgfaBYO/hyVJC7Gk3xf6ypKd2MCrFRXsCAwEAAQ==
- # config.decrypt.key: ${publickey}
- # jackson:
- # serialization:
- # write-null-map-values: true
- # gson:
- # serialize-nulls: true
- servlet:
- multipart:
- #上传最大文件大小
- max-file-size: 100MB
- #最大请求大小
- max-request-size: 100MB
- welampiot:
- mqtt:
- url: tcp://139.196.213.241:1883
- clientId: welampiot_mqtt_client
- topics: /#
- username: admin
- password: admin
- timeout: 10
- keepalive: 20
- wifi: #云盒
- mqtt:
- url: tcp://streetserver.weclouds.xyz:1883
- clientId: welampiot_mqtt_client
- topics: /#
- username: weclouds
- password: weclouds@1234
- timeout: 10
- keepalive: 20
- plc: #力合微
- mqtt:
- url: tcp://120.24.144.183:1883
- clientId: plc_mqtt_client
- topics: /#
- username: gateway_plc
- password: gwplc123456
- timeout: 10
- keepalive: 20
- qihui: #广东启慧
- plc:
- url: http://139.9.31.177:13389/openapi/
- clientId: qh5ozm3DqD4DLJ5F
- clientSecret: q1N1NFaMgiJXUGLM1fOVjWekcmsdyQ
- zhonglight: #中灯智慧科技(深圳)有限公司 zigbee
- plc:
- zhongUrl: http://www.cciot.top/app/
- operatorID: MA5G0DCR3 #调用方标识符
- operatorSecret: uGxdt8NP5DYY+qYD #调用方密钥
- sigSecret: ikbgAEmjkVqpKzsg #签名密钥-md5
- encryptKey: AoHh1WeNhNvjEaHr #AES加密密钥
- iv: SH7SjuAuu3MbXs0v #AES初始向量(偏移量)
- zhongUserName: zdzh1935 #用户名
- zhongPassword: Zhld2021 #密码
- freqlist:
- maps:
- 1:
- name: US915
- id: 1
- applicationID: 1
- deviceProfileID: e02c9c58-ae71-41f2-aab5-0f701e29810b
- networkServerID: 1
- serviceProfileID: 98b510c6-49ce-4c9b-8f22-7e56bd337ab4
- dr: 8
- frequency: 923300000
- 2:
- name: EU868
- id: 2
- applicationID: 7
- deviceProfileID: 0e5ea48e-1265-431a-be52-484a3a1d693a
- networkServerID: 76
- serviceProfileID: 7bd2cd5b-7390-4391-96f5-8c69760a6d3c
- dr: 0
- frequency: 869525000
- 3:
- name: AS923
- id: 3
- applicationID: 6
- deviceProfileID: 454e382e-e9d5-4dad-8d37-b8a51851befa
- networkServerID: 77
- serviceProfileID: 998c48eb-7f77-4517-beb4-871e22899dd7
- dr: 3
- frequency: 921600000
- mybatis:
- mapper-locations: classpath:/mapper/*.xml
- check-config-location: true
- type-aliases-package: com.welampiot
- configuration:
- log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
- debug: true
- logging:
- file:
- path: /logs/cis
- level:
- root: info
- config: classpath:logback.xml
|