From e92b00089d8d57899df380135d79864dade09837 Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Thu, 09 Feb 2023 16:18:59 +0800
Subject: [PATCH] 修改波场JAR 手续费修改成15trx
---
src/main/resources/application-prod.yml | 57 ++++++++++++++++++++++++++-------------------------------
1 files changed, 26 insertions(+), 31 deletions(-)
diff --git a/src/main/resources/application-prod.yml b/src/main/resources/application-prod.yml
index ebbad06..271769b 100644
--- a/src/main/resources/application-prod.yml
+++ b/src/main/resources/application-prod.yml
@@ -15,47 +15,42 @@
datasource:
# 数据源-1,名称为 base
base:
- username: ct_test
- password: 123456
+ username: db_igt
+ password: db_igt123!@#
driver-class-name: com.mysql.cj.jdbc.Driver
- url: jdbc:mysql://120.27.238.55:3306/db_igt?useUnicode=true&characterEncoding=UTF-8&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2b8
-# base:
-# username: db_tfc
-# password: tfc123!@#
-# driver-class-name: com.mysql.cj.jdbc.Driver
-# url: jdbc:mysql://127.0.0.1:3306/db_tfc?useUnicode=true&characterEncoding=UTF-8&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2b8
+ url: jdbc:mysql://154.91.195.148:3306/db_igt?useUnicode=true&characterEncoding=UTF-8&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2b8
- ## redis配置
+# username: db_igt_prd
+# password: igt_prd_123!@#
+# driver-class-name: com.mysql.cj.jdbc.Driver
+# url: jdbc:mysql://154.91.195.148:3306/db_igt_prd?useUnicode=true&characterEncoding=UTF-8&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2b8
+
redis:
- ## Redis数据库索引(默认为0)
- database: 5
- ## Redis服务器地址
+ # Redis数据库索引(默认为 0)
+ database: 10
+ # Redis服务器地址
host: 127.0.0.1
- ## Redis服务器连接端口
+ # Redis服务器连接端口
port: 6379
- ## Redis服务器连接密码(默认为空)
- password: ann123!@#
- jedis:
+ # Redis 密码
+ password: dapp!@#123
+ lettuce:
pool:
- ## 连接池最大连接数(使用负值表示没有限制)
- #spring.redis.pool.max-active=8
- max-active: 300
- ## 连接池最大阻塞等待时间(使用负值表示没有限制)
- #spring.redis.pool.max-wait=-1
- max-wait: -1
- ## 连接池中的最大空闲连接
- #spring.redis.pool.max-idle=8
- max-idle: 100
- ## 连接池中的最小空闲连接
- #spring.redis.pool.min-idle=0
+ # 连接池中的最小空闲连接
min-idle: 8
- ## 连接超时时间(毫秒)
- timeout: 30000
+ # 连接池中的最大空闲连接
+ max-idle: 500
+ # 连接池最大连接数(使用负值表示没有限制)
+ max-active: 2000
+ # 连接池最大阻塞等待时间(使用负值表示没有限制)
+ max-wait: 10000
+ # 连接超时时间(毫秒)
+ timeout: 5000
rabbitmq:
host: 127.0.0.1
port: 5672
- username: abc_user
- password: abc123
+ username: xc_rabbit
+ password: xuncong123
publisher-confirm-type: correlated
jackson:
--
Gitblit v1.9.1