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