提交 | 用户 | 时间
|
e7c126
|
1 |
spring: |
d9f9ba
|
2 |
application: |
H |
3 |
name: infra-server |
|
4 |
|
|
5 |
profiles: |
4a47e4
|
6 |
active: @profiles.active@ |
H |
7 |
|
|
8 |
cloud: |
|
9 |
nacos: |
|
10 |
server-addr: @nacos.server@ # Nacos 服务器地址 |
|
11 |
username: @nacos.username@ |
|
12 |
password: @nacos.password@ |
|
13 |
discovery: # 【配置中心】配置项 |
|
14 |
namespace: @profiles.active@ |
|
15 |
group: DEFAULT_GROUP # 使用的 Nacos 配置分组,默认为 DEFAULT_GROUP |
|
16 |
metadata: |
|
17 |
version: @nacos.metadata.version@ # 服务实例的版本号,可用于灰度发布 |
|
18 |
config: # 【注册中心】配置项 |
|
19 |
namespace: @profiles.active@ |
|
20 |
group: DEFAULT_GROUP # 使用的 Nacos 配置分组,默认为 DEFAULT_GROUP |
d9f9ba
|
21 |
|
e7c126
|
22 |
main: |
H |
23 |
allow-circular-references: true # 允许循环依赖,因为项目是三层架构,无法避免这个情况。 |
|
24 |
allow-bean-definition-overriding: true # 允许 Bean 覆盖,例如说 Feign 等会存在重复定义的服务 |
d9f9ba
|
25 |
|
H |
26 |
config: |
|
27 |
import: |
|
28 |
- optional:classpath:application-${spring.profiles.active}.yaml # 加载【本地】配置 |
|
29 |
- optional:nacos:${spring.application.name}-${spring.profiles.active}.yaml # 加载【Nacos】的配置 |
e7c126
|
30 |
|
H |
31 |
# Servlet 配置 |
|
32 |
servlet: |
|
33 |
# 文件上传相关配置项 |
|
34 |
multipart: |
|
35 |
max-file-size: 16MB # 单个文件大小 |
|
36 |
max-request-size: 32MB # 设置总上传的文件大小 |
|
37 |
mvc: |
|
38 |
pathmatch: |
|
39 |
matching-strategy: ANT_PATH_MATCHER # 解决 SpringFox 与 SpringBoot 2.6.x 不兼容的问题,参见 SpringFoxHandlerProviderBeanPostProcessor 类 |
|
40 |
|
|
41 |
# Jackson 配置项 |
|
42 |
jackson: |
|
43 |
serialization: |
|
44 |
write-dates-as-timestamps: true # 设置 LocalDateTime 的格式,使用时间戳 |
|
45 |
write-date-timestamps-as-nanoseconds: false # 设置不使用 nanoseconds 的格式。例如说 1611460870.401,而是直接 1611460870401 |
|
46 |
write-durations-as-timestamps: true # 设置 Duration 的格式,使用时间戳 |
|
47 |
fail-on-empty-beans: false # 允许序列化无属性的 Bean |
|
48 |
|
|
49 |
# Cache 配置项 |
|
50 |
cache: |
|
51 |
type: REDIS |
|
52 |
redis: |
|
53 |
time-to-live: 1h # 设置过期时间为 1 小时 |
d9f9ba
|
54 |
|
H |
55 |
server: |
|
56 |
port: 48082 |
|
57 |
|
|
58 |
logging: |
|
59 |
file: |
21dc7e
|
60 |
name: D:/DLUT/IailabPlat/webapp/infra/logs/${spring.application.name}.log # 日志文件名,全路径 |
e7c126
|
61 |
|
H |
62 |
--- #################### 接口文档配置 #################### |
|
63 |
|
|
64 |
springdoc: |
|
65 |
api-docs: |
|
66 |
enabled: true # 1. 是否开启 Swagger 接文档的元数据 |
|
67 |
path: /v3/api-docs |
|
68 |
swagger-ui: |
|
69 |
enabled: true # 2.1 是否开启 Swagger 文档的官方 UI 界面 |
|
70 |
path: /swagger-ui.html |
|
71 |
default-flat-param-object: true # 参见 https://doc.xiaominfo.com/docs/faq/v4/knife4j-parameterobject-flat-param 文档 |
|
72 |
|
|
73 |
knife4j: |
|
74 |
enable: true # 2.2 是否开启 Swagger 文档的 Knife4j UI 界面 |
|
75 |
setting: |
|
76 |
language: zh_cn |
|
77 |
|
|
78 |
# MyBatis Plus 的配置项 |
|
79 |
mybatis-plus: |
|
80 |
configuration: |
|
81 |
map-underscore-to-camel-case: true # 虽然默认为 true ,但是还是显示去指定下。 |
|
82 |
global-config: |
|
83 |
db-config: |
|
84 |
id-type: NONE # “智能”模式,基于 IdTypeEnvironmentPostProcessor + 数据源的类型,自动适配成 AUTO、INPUT 模式。 |
|
85 |
# id-type: AUTO # 自增 ID,适合 MySQL 等直接自增的数据库 |
|
86 |
# id-type: INPUT # 用户输入 ID,适合 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库 |
|
87 |
# id-type: ASSIGN_ID # 分配 ID,默认使用雪花算法。注意,Oracle、PostgreSQL、Kingbase、DB2、H2 数据库时,需要去除实体类上的 @KeySequence 注解 |
|
88 |
logic-delete-value: 1 # 逻辑已删除值(默认为 1) |
|
89 |
logic-not-delete-value: 0 # 逻辑未删除值(默认为 0) |
|
90 |
banner: false # 关闭控制台的 Banner 打印 |
|
91 |
type-aliases-package: ${iailab.info.base-package}.dal.dataobject |
|
92 |
encryptor: |
|
93 |
password: XDV71a+xqStEA3WH # 加解密的秘钥,可使用 https://www.imaegoo.com/2020/aes-key-generator/ 网站生成 |
|
94 |
|
|
95 |
mybatis-plus-join: |
|
96 |
banner: false # 关闭控制台的 Banner 打印 |
|
97 |
|
|
98 |
# Spring Data Redis 配置 |
|
99 |
spring: |
|
100 |
data: |
|
101 |
redis: |
|
102 |
repositories: |
|
103 |
enabled: false # 项目未使用到 Spring Data Redis 的 Repository,所以直接禁用,保证启动速度 |
|
104 |
|
|
105 |
# VO 转换(数据翻译)相关 |
|
106 |
easy-trans: |
|
107 |
is-enable-global: true # 启用全局翻译(拦截所有 SpringMVC ResponseBody 进行自动翻译 )。如果对于性能要求很高可关闭此配置,或通过 @IgnoreTrans 忽略某个接口 |
|
108 |
|
|
109 |
--- #################### RPC 远程调用相关配置 #################### |
|
110 |
|
|
111 |
--- #################### 消息队列相关 #################### |
|
112 |
|
|
113 |
# rocketmq 配置项,对应 RocketMQProperties 配置类 |
|
114 |
rocketmq: |
|
115 |
# Producer 配置项 |
|
116 |
producer: |
|
117 |
group: ${spring.application.name}_PRODUCER # 生产者分组 |
|
118 |
|
|
119 |
spring: |
|
120 |
# Kafka 配置项,对应 KafkaProperties 配置类 |
|
121 |
kafka: |
|
122 |
# Kafka Producer 配置项 |
|
123 |
producer: |
|
124 |
acks: 1 # 0-不应答。1-leader 应答。all-所有 leader 和 follower 应答。 |
|
125 |
retries: 3 # 发送失败时,重试发送的次数 |
|
126 |
value-serializer: org.springframework.kafka.support.serializer.JsonSerializer # 消息的 value 的序列化 |
|
127 |
# Kafka Consumer 配置项 |
|
128 |
consumer: |
|
129 |
auto-offset-reset: earliest # 设置消费者分组最初的消费进度为 earliest 。可参考博客 https://blog.csdn.net/lishuangzhe7047/article/details/74530417 理解 |
|
130 |
value-deserializer: org.springframework.kafka.support.serializer.JsonDeserializer |
|
131 |
properties: |
|
132 |
spring.json.trusted.packages: '*' |
|
133 |
# Kafka Consumer Listener 监听器配置 |
|
134 |
listener: |
|
135 |
missing-topics-fatal: false # 消费监听接口监听的主题不存在时,默认会报错。所以通过设置为 false ,解决报错 |
|
136 |
|
|
137 |
--- #################### 定时任务相关配置 #################### |
|
138 |
|
|
139 |
xxl: |
|
140 |
job: |
|
141 |
executor: |
|
142 |
appname: ${spring.application.name} # 执行器 AppName |
21dc7e
|
143 |
logpath: D:/DLUT/IailabPlat/webapp/infra/logs/xxl-job/${spring.application.name} # 执行器运行日志文件存储磁盘路径 |
e7c126
|
144 |
accessToken: default_token # 执行器通讯TOKEN |
H |
145 |
|
|
146 |
--- #################### 平台相关配置 #################### |
|
147 |
|
|
148 |
iailab: |
|
149 |
info: |
|
150 |
version: 1.0.0 |
|
151 |
base-package: com.iailab.module.infra |
|
152 |
web: |
|
153 |
admin-ui: |
08e3e8
|
154 |
url: # Admin 管理后台 UI 的地址 |
325d2f
|
155 |
xss: |
H |
156 |
enable: false |
|
157 |
exclude-urls: # 如下两个 url,仅仅是为了演示,去掉配置也没关系 |
|
158 |
- ${spring.boot.admin.context-path}/** # 不处理 Spring Boot Admin 的请求 |
|
159 |
- ${management.endpoints.web.base-path}/** # 不处理 Actuator 的请求 |
e7c126
|
160 |
websocket: |
H |
161 |
enable: true # websocket的开关 |
|
162 |
path: /infra/ws # 路径 |
21dc7e
|
163 |
sender-type: rabbitmq # 消息发送的类型,可选值为 local、redis、rocketmq、kafka、rabbitmq |
e7c126
|
164 |
sender-rocketmq: |
H |
165 |
topic: ${spring.application.name}-websocket # 消息发送的 RocketMQ Topic |
|
166 |
consumer-group: ${spring.application.name}-websocket-consumer # 消息发送的 RocketMQ Consumer Group |
|
167 |
sender-rabbitmq: |
|
168 |
exchange: ${spring.application.name}-websocket-exchange # 消息发送的 RabbitMQ Exchange |
|
169 |
queue: ${spring.application.name}-websocket-queue # 消息发送的 RabbitMQ Queue |
|
170 |
sender-kafka: |
|
171 |
topic: ${spring.application.name}-websocket # 消息发送的 Kafka Topic |
|
172 |
consumer-group: ${spring.application.name}-websocket-consumer # 消息发送的 Kafka Consumer Group |
|
173 |
swagger: |
|
174 |
title: 管理后台 |
|
175 |
description: 提供管理员管理的所有功能 |
|
176 |
version: ${iailab.info.version} |
|
177 |
codegen: |
|
178 |
base-package: com.iailab |
|
179 |
db-schemas: ${spring.datasource.dynamic.datasource.master.name} |
|
180 |
front-type: 10 # 前端模版的类型,参见 CodegenFrontTypeEnum 枚举类 |
|
181 |
tenant: # 多租户相关配置项 |
|
182 |
enable: true |
|
183 |
ignore-urls: |
|
184 |
- /admin-api/infra/file/*/get/** # 获取图片,和租户无关 |
|
185 |
ignore-tables: |
|
186 |
- infra_codegen_column |
|
187 |
- infra_codegen_table |
|
188 |
- infra_config |
|
189 |
- infra_file_config |
|
190 |
- infra_file |
|
191 |
- infra_file_content |
|
192 |
- infra_job |
|
193 |
- infra_job_log |
|
194 |
- infra_job_log |
|
195 |
- infra_data_source_config |
|
196 |
|
|
197 |
debug: false |