123456789101112131415161718192021222324252627282930313233343536373839404142 |
- server:
- port: 10021
- servlet:
- context-path: /demo
- tomcat:
- uri-encoding: UTF-8
- basedir: /data/tmp
-
- spring:
- profiles:
- include:
- - common
- # Redis
- redis:
- database: 8 # Redis数据库索引(默认为0)
- timeout: 0 # 连接超时时间(毫秒)
- host: 172.18.0.23
- port: 6379
- password: Ebe1tech/Passw0rd
-
- # dataBase
- datasource:
- druid:
- # 从这里开始(druid),中间的这段配置用于 pocky.database.multiTenantType != DATASOURCE 时
- url: jdbc:mysql://172.18.0.23:3306/gihon?characterEncoding=UTF-8&useSSL=false
- username: root
- password: 1q2w3e4r
- knife4j:
- # 开启增强配置
- enable: true
- setting:
- swaggerModelName: '模型名称'
- enableFooter: false
- documents:
- -
- group: SSO
- name: 登录验证模块
- gihon:
- common:
- module-type: 1
- module-code: SystemManage
|