12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- server:
- port: 8087
- servlet:
- context-path: /device-asset-weixin
- spring:
- application:
- name: device-asset-weixin
- devtools:
- restart:
- enabled: true
- aop:
- proxy-target-class: true
- redis:
- host: 172.18.0.23
- port: 6379
- timeout: 30000
- database: 1
- password: Ebe1tech/Passw0rd
- jedis:
- pool:
- max-active: 50
- max-idle: 5
- min-idle: 0
- max-wait: -1
- jackson:
- date-format: yyyy-MM-dd HH:mm:ss
- time-zone: GMT+8
-
- datasource:
- url: jdbc:mysql://172.18.0.23:3306/rongsheng_qpi?useUnicode=true&characterEncoding=utf-8&useTimezone=true&serverTimezone=GMT%2B8
- username: root
- password: 1q2w3e4r
- driver-class-name: com.mysql.cj.jdbc.Driver
- platform: mysql
- mybatis-plus:
- mapper-locations:
- - classpath:/mapper/**/**Mapper.xml
- - classpath:/mapper/*Mapper.xml
- #实体扫描,多个package用逗号或者分号分隔
- typeAliasesPackage: com.ebei.device.task.entity
- global-config:
- db-config:
- dbType: MYSQL
- #主键类型 AUTO:"数据库ID自增", INPUT:"用户输入ID", ID_WORKER:"全局唯一ID (数字类型唯一ID)", UUID:"全局唯一ID UUID";
- id-type: AUTO
- #字段策略IGNORED:"忽略判断",NOT_NULL:"非 NULL 判断"),NOT_EMPTY:"非空判断"
- field-strategy: NOT_NULL
- #逻辑删除配置(下面3个配置)
- logic-delete-value: 0
- logic-not-delete-value: 1
- configuration:
- #驼峰下划线转换
- map-underscore-to-camel-case: true
- cache-enabled: false
- jdbc-type-for-null: 'null'
- rule:
- receive:
- create: true
- modify: true
- task:
- corePoolSize: 10
- maxPoolSize: 50
- queueCapacity: 10
- #非小时任务推送时间
- day-message-push: 07:00-18:00
- #是否按照计划中的标准生成任务
- create-by-standard: off
- #schedule 定时器,redis redis失效通知
- create-model: redis
- mqtt: true
- push-url: http://11.223.61.51:5903/MQTTProxy/mqtt_Mqtt_pub.do
- comm:
- # rtwg-oa-pdf-url: http://101.200.225.123/device/assetApp/createHardwareWebPDF/
- rtwg-oa-pdf-url: http://172.18.0.78:8089/device/assetApp/createHardwareWebPDF/
- fileServer: http://172.18.0.23/filemanager/FileUploadAndDownloadServlet
- white-list:
- - /login/*CheckedLoginInfo**
- - /login/clearToken**
- - /login/updatePassword**
- - /filestore/**
- - /**error**
- - /**swagger-resources/**
- - /**webjars/**
- - /**swagger-ui.html/**
- - /*App/createHardwareWebPDF/**
- - /*imge/**
|