From e18f2001fda0eccfbf2aa617e127c70b92083909 Mon Sep 17 00:00:00 2001 From: dengzedong <dengzedong@email> Date: 星期六, 14 九月 2024 16:37:00 +0800 Subject: [PATCH] mpk 模型方法添加参数、选项 dao --- iailab-module-model/iailab-module-model-biz/src/main/resources/application.yml | 74 ++++++++++++++++++++++++++++-------- 1 files changed, 57 insertions(+), 17 deletions(-) diff --git a/iailab-module-model/iailab-module-model-biz/src/main/resources/application.yml b/iailab-module-model/iailab-module-model-biz/src/main/resources/application.yml index 7bec114..1161edd 100644 --- a/iailab-module-model/iailab-module-model-biz/src/main/resources/application.yml +++ b/iailab-module-model/iailab-module-model-biz/src/main/resources/application.yml @@ -1,9 +1,9 @@ spring: application: - name: model-server + name: model-server profiles: - active: ${spring.profiles.active} + active: @profiles.active@ cloud: nacos: @@ -58,6 +58,12 @@ logging: file: name: @log.path@/logs/${spring.application.name}.log # 日志文件名,全路径 + level: + org: + springframework: + boot: + autoconfigure: + logging: info --- #################### 接口文档配置 #################### @@ -68,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 @@ -140,31 +146,65 @@ listener: missing-topics-fatal: false # 消费监听接口监听的主题不存在时,默认会报错。所以通过设置为 false ,解决报错 ---- #################### 定时任务相关配置 #################### - -xxl: - job: - executor: - appname: ${spring.application.name} # 执行器 AppName - logpath: @log.path@/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: # 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_dm_module + - t_dm_module_item + - t_mm_item_output + - t_mm_item_result + - t_mm_item_type + - t_mm_model_arith_settings + - t_mm_model_param + - t_mm_model_resultstr + - t_mm_predict_item + - t_mm_predict_merge_item + - t_mm_predict_model + - t_mm_result_table + - t_mm_item_result_json + - t_mm_item_result_last_point + - t_mm_item_accuracy_rate + - t_mm_predict_alarm_config + - t_mm_predict_alarm_message + - t_st_schedule_scheme + - t_st_schedule_model + - t_st_schedule_model_param + - t_st_schedule_model_setting + - t_st_schedule_suggest + - t_st_schedule_record + - t_st_schedule_record_detail + app: + app-key: model + app-secret: 85b0df7edc3df3611913df34ed695011 + core-host: 127.0.0.1 -debug: true \ No newline at end of file + +debug: true -- Gitblit v1.9.3