| | |
| | | spring: |
| | | application: |
| | | name: infra-server |
| | | |
| | | profiles: |
| | | active: @profiles.active@ |
| | | |
| | | cloud: |
| | | nacos: |
| | | server-addr: @nacos.server@ # Nacos 服务器地址 |
| | | username: @nacos.username@ |
| | | password: @nacos.password@ |
| | | discovery: # 【配置中心】配置项 |
| | | # ip: @deploy.server@ |
| | | namespace: @profiles.active@ |
| | | group: DEFAULT_GROUP # 使用的 Nacos 配置分组,默认为 DEFAULT_GROUP |
| | | metadata: |
| | | version: @nacos.metadata.version@ # 服务实例的版本号,可用于灰度发布 |
| | | config: # 【注册中心】配置项 |
| | | namespace: @profiles.active@ |
| | | group: DEFAULT_GROUP # 使用的 Nacos 配置分组,默认为 DEFAULT_GROUP |
| | | |
| | | main: |
| | | allow-circular-references: true # 允许循环依赖,因为项目是三层架构,无法避免这个情况。 |
| | | allow-bean-definition-overriding: true # 允许 Bean 覆盖,例如说 Feign 等会存在重复定义的服务 |
| | | |
| | | config: |
| | | import: |
| | | - optional:classpath:application-${spring.profiles.active}.yaml # 加载【本地】配置 |
| | | - optional:nacos:${spring.application.name}-${spring.profiles.active}.yaml # 加载【Nacos】的配置 |
| | | |
| | | # Servlet 配置 |
| | | servlet: |
| | |
| | | type: REDIS |
| | | redis: |
| | | time-to-live: 1h # 设置过期时间为 1 小时 |
| | | |
| | | server: |
| | | port: 48082 |
| | | |
| | | logging: |
| | | file: |
| | | name: @log.path@/iailab-infra/log/${spring.application.name}.log # 日志文件名,全路径 |
| | | |
| | | --- #################### 接口文档配置 #################### |
| | | |
| | |
| | | # VO 转换(数据翻译)相关 |
| | | easy-trans: |
| | | is-enable-global: true # 启用全局翻译(拦截所有 SpringMVC ResponseBody 进行自动翻译 )。如果对于性能要求很高可关闭此配置,或通过 @IgnoreTrans 忽略某个接口 |
| | | is-enable-cloud: false # 禁用 TransType.RPC 微服务模式 |
| | | |
| | | --- #################### RPC 远程调用相关配置 #################### |
| | | |
| | |
| | | job: |
| | | executor: |
| | | appname: ${spring.application.name} # 执行器 AppName |
| | | logpath: ${user.home}/logs/xxl-job/${spring.application.name} # 执行器运行日志文件存储磁盘路径 |
| | | logpath: D:/DLUT/IailabPlat/webapp/infra/logs/xxl-job/${spring.application.name} # 执行器运行日志文件存储磁盘路径 |
| | | accessToken: default_token # 执行器通讯TOKEN |
| | | |
| | | --- #################### 平台相关配置 #################### |
| | |
| | | base-package: com.iailab.module.infra |
| | | web: |
| | | admin-ui: |
| | | url: http://dashboard.iailab.iocoder.cn # Admin 管理后台 UI 的地址 |
| | | url: # Admin 管理后台 UI 的地址 |
| | | xss: |
| | | enable: false |
| | | exclude-urls: # 如下两个 url,仅仅是为了演示,去掉配置也没关系 |
| | | - ${spring.boot.admin.context-path}/** # 不处理 Spring Boot Admin 的请求 |
| | | - ${management.endpoints.web.base-path}/** # 不处理 Actuator 的请求 |
| | | websocket: |
| | | enable: true # websocket的开关 |
| | | path: /infra/ws # 路径 |
| | | sender-type: local # 消息发送的类型,可选值为 local、redis、rocketmq、kafka、rabbitmq |
| | | sender-type: rabbitmq # 消息发送的类型,可选值为 local、redis、rocketmq、kafka、rabbitmq |
| | | sender-rocketmq: |
| | | topic: ${spring.application.name}-websocket # 消息发送的 RocketMQ Topic |
| | | consumer-group: ${spring.application.name}-websocket-consumer # 消息发送的 RocketMQ Consumer Group |
| | |
| | | title: 管理后台 |
| | | description: 提供管理员管理的所有功能 |
| | | version: ${iailab.info.version} |
| | | base-package: ${iailab.info.base-package} |
| | | codegen: |
| | | base-package: com.iailab |
| | | db-schemas: ${spring.datasource.dynamic.datasource.master.name} |