Newer
Older
device-data-creator / src / main / resources / config / application.yml
chaizhuang on 20 Jul 2023 1 KB 新增kafka发送,时间乱序
##########################################################
spring:
  profiles:
    active: dev
  servlet:
    multipart:
      max-file-size: 50MB
      max-request-size: 80MB
  mvc:
    pathmatch:
      matching-strategy: ant_path_matcher
mybatis-plus:
  global-config:
    enable-sql-runner: true
  configuration:
    # 配置结果集属性为空时 是否映射返回结果
    log-impl: org.apache.ibatis.logging.stdout.StdOutImpl #打印sql语句,调试用
  mapper-locations: classpath:mapper/*.xml
mybatis:
  mapper-locations: classpath:mapper/*.xml
#mybatis-plus:
#    sql-injector: com.baomidou.mybatisplus.mapper.LogicSqlInjector
###################  mybatis-plus配置  ###################
###################  casic配置  ###################
flowable:
  checkProcessDefinitions: false #不校验process文件
casic:
  alarm:
    topic: MSGQUEUE_8287 #监测数据kafka数据发布主题
  data:
    topic: TEMPSTORE_8204  #告警消息kafka数据发布主题
    kafka-Kerb-Url: D:\casic203\software\software\kafka-kaina\
  device:
    hour-types: 8
    day-types: 1,2,7
  task:
    cron: '0 0/1 * * * ? '
    interval:
      one-day: '0 0/1 0 */1 * ? '
      three-day: '0 0/10  *  *  *  ? '
      four-day: '0 0 0 */4 * ? '