1 Star 1 Fork 0

wangjiande/spring-cloud-config

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
service-sit.yml 2.82 KB
一键复制 编辑 原始数据 按行查看 历史
wangjiande 提交于 2023-05-06 16:06 . sleuth zipkin config
env: dev
spring:
redis:
# database: 1 # 默认 0 共0-16
host: 172.20.10.5
port: 6379
# password: # 密码(默认为空)
timeout: 6000ms # 连接超时时长(毫秒)
lettuce:
pool:
max-active: 1000 # 连接池最大连接数(使用负值表示没有限制)
max-wait: -1 # 连接池最大阻塞等待时间(使用负值表示没有限制)ms
max-idle: 10 # 连接池中的最大空闲连接
min-idle: 5 # 连接池中的最小空闲连接
# 配置rabbitmq的地址以及用户密码 以提供配置实时刷新功能
rabbitmq:
host: 172.20.10.5
port: 5672
username: admin
password: 123456
zipkin:
# 关闭服务发现,否则Spring Cloud会把zipkin的url当做服务名称
discoveryClientEnabled: false
# zipkin url地址 默认127.0.0.1:9411
base-url: http://172.20.10.5:9411
sender:
type: rabbit # web 表示http方式
sleuth:
sampler:
# 采样率值介于 0 到 1 之间, 1 则表示全部采集
# 默认值:0.1,即10%
probability: 1
base-url: http://172.20.10.5:9411 # 默认127.0.0.1:9411
autoconfigure:
#排除druid自动装配
exclude: com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure
datasource:
dynamic:
primary: mysql
datasource:
#多数据源配置
mysql:
url: jdbc:mysql://172.20.10.5:3306/wangjiande?useUnicode=true&allowMultiQueries=true&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC
username: root
password: 123456
driver-class-name: com.mysql.cj.jdbc.Driver
mysql2:
url: jdbc:mysql://172.20.10.5:3307/wangjiande2?useUnicode=true&allowMultiQueries=true&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC
username: root
password: 123456
driver-class-name: com.mysql.cj.jdbc.Driver
# oracle:
# url: jdbc:oracle:thin:@localhost:1521/oracle
# username: root
# password: 123456
# driver-class-name: oracle.jdbc.OracleDriver
# #schema: classpath:db/schema-hipay-update-oracle.sql
# postgresql:
# url: jdbc:postgresql://172.20.10.3:5432/wangjiande?useUnicode=true&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2B8
# username: postgres
# password: 123456
# driver-class-name: org.postgresql.Driver
mybatis-plus:
type-aliases-package: com.jiande.cloud.service.model
mapper-locations: classpath:/mapper/*.xml
configuration:
cache-enabled: false
call-setters-on-nulls: true
map-underscore-to-camel-case: true
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
global-config:
banner: off
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wangjiande/spring-cloud-config.git
git@gitee.com:wangjiande/spring-cloud-config.git
wangjiande
spring-cloud-config
spring-cloud-config
master

搜索帮助