潘志宝
2024-09-25 b1f48133eda26d7ccf838167519cf8b299fbe140
提交 | 用户 | 时间
de0c05 1 --- #################### 注册中心 + 配置中心相关配置 ####################
a6de49 2 spring:
H 3   application:
bbc1ee 4     name: model-server
a6de49 5
H 6   profiles:
bbc1ee 7     active: @profiles.active@
4a47e4 8
H 9   cloud:
10     nacos:
11       server-addr: @nacos.server@ # Nacos 服务器地址
12       username: @nacos.username@
13       password: @nacos.password@
14       discovery: # 【配置中心】配置项
de0c05 15         namespace: @profiles.active@
4a47e4 16         group: DEFAULT_GROUP # 使用的 Nacos 配置分组,默认为 DEFAULT_GROUP
H 17         metadata:
18           version: @nacos.metadata.version@ # 服务实例的版本号,可用于灰度发布
19       config: # 【注册中心】配置项
de0c05 20         namespace: @profiles.active@
4a47e4 21         group: DEFAULT_GROUP # 使用的 Nacos 配置分组,默认为 DEFAULT_GROUP
a6de49 22
H 23   main:
24     allow-circular-references: true # 允许循环依赖,因为项目是三层架构,无法避免这个情况。
25     allow-bean-definition-overriding: true # 允许 Bean 覆盖,例如说 Feign 等会存在重复定义的服务
26
27   config:
28     import:
29       - optional:classpath:application-${spring.profiles.active}.yaml # 加载【本地】配置
30       - optional:nacos:${spring.application.name}-${spring.profiles.active}.yaml # 加载【Nacos】的配置
31
32   # Servlet 配置
33   servlet:
34     # 文件上传相关配置项
35     multipart:
36       max-file-size: 16MB # 单个文件大小
37       max-request-size: 32MB # 设置总上传的文件大小
38   mvc:
39     pathmatch:
40       matching-strategy: ANT_PATH_MATCHER # 解决 SpringFox 与 SpringBoot 2.6.x 不兼容的问题,参见 SpringFoxHandlerProviderBeanPostProcessor 类
41
42   # Jackson 配置项
43   jackson:
44     serialization:
45       write-dates-as-timestamps: true # 设置 LocalDateTime 的格式,使用时间戳
46       write-date-timestamps-as-nanoseconds: false # 设置不使用 nanoseconds 的格式。例如说 1611460870.401,而是直接 1611460870401
47       write-durations-as-timestamps: true # 设置 Duration 的格式,使用时间戳
48       fail-on-empty-beans: false # 允许序列化无属性的 Bean
49
50   # Cache 配置项
51   cache:
52     type: REDIS
53     redis:
54       time-to-live: 1h # 设置过期时间为 1 小时
55
56 server:
57   port: 8983
58
59 logging:
60   file:
4a47e4 61     name: @log.path@/logs/${spring.application.name}.log # 日志文件名,全路径
bbc1ee 62   level:
63     org:
64       springframework:
65         boot:
66           autoconfigure:
67             logging: info
a6de49 68
H 69 --- #################### 接口文档配置 ####################
70
71 springdoc:
72   api-docs:
73     enabled: true # 1. 是否开启 Swagger 接文档的元数据
74     path: /v3/api-docs
75   swagger-ui:
76     enabled: true # 2.1 是否开启 Swagger 文档的官方 UI 界面
77     path: /swagger-ui.html
bbc1ee 78   default-flat-param-object: true
a6de49 79
H 80 knife4j:
81   enable: true
82   basic:
83     enable: false
84     username: admin
85     password: admin
86   setting:
87     enableFooter: false
88
89 # MyBatis Plus 的配置项
90 mybatis-plus:
91   configuration:
92     map-underscore-to-camel-case: true # 虽然默认为 true ,但是还是显示去指定下。
93   global-config:
94     db-config:
95       id-type: AUTO # “智能”模式,基于 IdTypeEnvironmentPostProcessor + 数据源的类型,自动适配成 AUTO、INPUT 模式。
96       #      id-type: AUTO # 自增 ID,适合 MySQL 等直接自增的数据库
97       #      id-type: INPUT # 用户输入 ID,适合 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库
98       #      id-type: ASSIGN_ID # 分配 ID,默认使用雪花算法。注意,Oracle、PostgreSQL、Kingbase、DB2、H2 数据库时,需要去除实体类上的 @KeySequence 注解
99       logic-delete-value: 1 # 逻辑已删除值(默认为 1)
100       logic-not-delete-value: 0 # 逻辑未删除值(默认为 0)
101     banner: false # 关闭控制台的 Banner 打印
102   type-aliases-package: ${iailab.info.base-package}.*.entity
103   mapper-locations: classpath*:/mapper/**/*.xml
104   encryptor:
105     password: XDV71a+xqStEA3WH # 加解密的秘钥,可使用 https://www.imaegoo.com/2020/aes-key-generator/ 网站生成
106
107 mybatis-plus-join:
108   banner: false # 关闭控制台的 Banner 打印
109
110 # Spring Data Redis 配置
111 spring:
112   data:
113     redis:
114       repositories:
115         enabled: false # 项目未使用到 Spring Data Redis 的 Repository,所以直接禁用,保证启动速度
116
117 # VO 转换(数据翻译)相关
118 easy-trans:
119   is-enable-global: true # 启用全局翻译(拦截所有 SpringMVC ResponseBody 进行自动翻译 )。如果对于性能要求很高可关闭此配置,或通过 @IgnoreTrans 忽略某个接口
120   is-enable-cloud: false # 禁用 TransType.RPC 微服务模式
121
122 --- #################### RPC 远程调用相关配置 ####################
123
124 --- #################### 消息队列相关 ####################
125
126 # rocketmq 配置项,对应 RocketMQProperties 配置类
127 rocketmq:
128   # Producer 配置项
129   producer:
130     group: ${spring.application.name}_PRODUCER # 生产者分组
131
132 spring:
133   # Kafka 配置项,对应 KafkaProperties 配置类
134   kafka:
135     # Kafka Producer 配置项
136     producer:
137       acks: 1 # 0-不应答。1-leader 应答。all-所有 leader 和 follower 应答。
138       retries: 3 # 发送失败时,重试发送的次数
139       value-serializer: org.springframework.kafka.support.serializer.JsonSerializer # 消息的 value 的序列化
140     # Kafka Consumer 配置项
141     consumer:
142       auto-offset-reset: earliest # 设置消费者分组最初的消费进度为 earliest 。可参考博客 https://blog.csdn.net/lishuangzhe7047/article/details/74530417 理解
143       value-deserializer: org.springframework.kafka.support.serializer.JsonDeserializer
144       properties:
145         spring.json.trusted.packages: '*'
146     # Kafka Consumer Listener 监听器配置
147     listener:
148       missing-topics-fatal: false # 消费监听接口监听的主题不存在时,默认会报错。所以通过设置为 false ,解决报错
149
150
151 --- #################### 平台相关配置 ####################
152
153 iailab:
154   info:
155     version: 1.0.0
bbc1ee 156     base-package: com.iailab.module.model
a6de49 157   web:
H 158     admin-ui:
08e3e8 159       url:  # Admin 管理后台 UI 的地址
a6de49 160   swagger:
de0c05 161     title: 模型管理
162     description: 模型管理
a6de49 163     version: ${iailab.info.version}
H 164     base-package: ${iailab.info.base-package}
165   tenant: # 多租户相关配置项
bbc1ee 166     enable: true
167     ignore-tables:
168       - qrtz_blob_triggers
169       - qrtz_calendars
170       - qrtz_cron_triggers
171       - qrtz_fired_triggers
172       - qrtz_job_details
173       - qrtz_locks
174       - qrtz_paused_trigger_grps
175       - qrtz_scheduler_state
176       - qrtz_simple_triggers
177       - qrtz_simprop_triggers
178       - qrtz_triggers
179       - schedule_job
180       - schedule_job_log
c72ae4 181       - t_dm_module
182       - t_dm_module_item
183       - t_mm_item_output
184       - t_mm_item_result
185       - t_mm_item_type
186       - t_mm_model_arith_settings
187       - t_mm_model_param
188       - t_mm_model_resultstr
189       - t_mm_predict_item
190       - t_mm_predict_merge_item
191       - t_mm_predict_model
192       - t_mm_result_table
193       - t_mm_item_result_json
194       - t_mm_item_result_last_point
195       - t_mm_item_accuracy_rate
196       - t_mm_predict_alarm_config
197       - t_mm_predict_alarm_message
48c57b 198       - t_mm_sequence_num
c72ae4 199       - t_st_schedule_scheme
200       - t_st_schedule_model
201       - t_st_schedule_model_param
202       - t_st_schedule_model_setting
203       - t_st_schedule_suggest
204       - t_st_schedule_record
205       - t_st_schedule_record_detail
de0c05 206       - t_mpk_file
207       - t_mpk_generator_code_history
208       - t_mpk_method_setting
209       - t_mpk_model_method
210       - t_mpk_project
211       - t_mpk_project_model
212       - t_mpk_project_package_history
213       - t_mpk_project_package_history_model
214       - t_mpk_setting_select
8b3ee3 215       - t_mpk_icon
216       - t_mpk_file_menu
217       - t_mpk_file_group
bbc1ee 218   app:
c72ae4 219     app-key: model
bbc1ee 220     app-secret: 85b0df7edc3df3611913df34ed695011
221     core-host: 127.0.0.1
a6de49 222
bbc1ee 223
224 debug: true