潘志宝
2024-09-09 bbc1eeba9c29032add5175f2739782fd204de715
iailab-module-model/iailab-module-model-biz/src/main/resources/application.yml
@@ -1,9 +1,23 @@
spring:
  application:
    name:  model-server
    name: model-server
  profiles:
    active: local
    active: @profiles.active@
  cloud:
    nacos:
      server-addr: @nacos.server@ # Nacos 服务器地址
      username: @nacos.username@
      password: @nacos.password@
      discovery: # 【配置中心】配置项
        namespace: ${spring.profiles.active}
        group: DEFAULT_GROUP # 使用的 Nacos 配置分组,默认为 DEFAULT_GROUP
        metadata:
          version: @nacos.metadata.version@ # 服务实例的版本号,可用于灰度发布
      config: # 【注册中心】配置项
        namespace: ${spring.profiles.active}
        group: DEFAULT_GROUP # 使用的 Nacos 配置分组,默认为 DEFAULT_GROUP
  main:
    allow-circular-references: true # 允许循环依赖,因为项目是三层架构,无法避免这个情况。
@@ -43,7 +57,13 @@
logging:
  file:
    name: ${user.home}/logs/${spring.application.name}.log # 日志文件名,全路径
    name: @log.path@/logs/${spring.application.name}.log # 日志文件名,全路径
  level:
    org:
      springframework:
        boot:
          autoconfigure:
            logging: info
--- #################### 接口文档配置 ####################
@@ -54,7 +74,7 @@
  swagger-ui:
    enabled: true # 2.1 是否开启 Swagger 文档的官方 UI 界面
    path: /swagger-ui.html
  default-flat-param-object: true # 参见 https://doc.xiaominfo.com/docs/faq/v4/knife4j-parameterobject-flat-param 文档
  default-flat-param-object: true
knife4j:
  enable: true
@@ -126,31 +146,59 @@
    listener:
      missing-topics-fatal: false # 消费监听接口监听的主题不存在时,默认会报错。所以通过设置为 false ,解决报错
--- #################### 定时任务相关配置 ####################
xxl:
  job:
    executor:
      appname: ${spring.application.name} # 执行器 AppName
      logpath: ${user.home}/logs/xxl-job/${spring.application.name} # 执行器运行日志文件存储磁盘路径
    accessToken: default_token # 执行器通讯TOKEN
--- #################### 平台相关配置 ####################
iailab:
  info:
    version: 1.0.0
    base-package: com.iailab.module
    base-package: com.iailab.module.model
  web:
    admin-ui:
      url: http://dashboard.iailab.iocoder.cn # Admin 管理后台 UI 的地址
      url:  # Admin 管理后台 UI 的地址
  swagger:
    title: 模型
    description: 模型
    title: 数据采集
    description: 数据采集
    version: ${iailab.info.version}
    base-package: ${iailab.info.base-package}
  tenant: # 多租户相关配置项
    enable: false
    enable: true
    ignore-tables:
      - qrtz_blob_triggers
      - qrtz_calendars
      - qrtz_cron_triggers
      - qrtz_fired_triggers
      - qrtz_job_details
      - qrtz_locks
      - qrtz_paused_trigger_grps
      - qrtz_scheduler_state
      - qrtz_simple_triggers
      - qrtz_simprop_triggers
      - qrtz_triggers
      - schedule_job
      - schedule_job_log
      - t_channel_kio_device
      - t_channel_kio_tag
      - t_channel_modbus_device
      - t_channel_modbus_tag
      - t_channel_opcda_device
      - t_channel_opcda_tag
      - t_channel_opcua_device
      - t_channel_opcua_tag
      - t_da_math_point
      - t_da_measure_point
      - t_da_point
      - t_da_point_value
      - t_da_sequence_num
      - t_http_api
      - t_http_tag
      - t_http_token
      - t_ind_item
      - t_ind_item_atom
  app:
    app-key: data
    app-secret: 85b0df7edc3df3611913df34ed695011
    core-host: 127.0.0.1
debug: true
debug: true