From 64b72edc08b5fd5fd62274b7fa7047a604ff94de Mon Sep 17 00:00:00 2001
From: Administrator <15274802129@163.com>
Date: Tue, 23 Dec 2025 16:32:00 +0800
Subject: [PATCH] chore(logging): 调整根日志级别为info
---
src/main/resources/application-test.yml | 70 ++++++++++++++++++----------------
1 files changed, 37 insertions(+), 33 deletions(-)
diff --git a/src/main/resources/application-test.yml b/src/main/resources/application-test.yml
index c7eded1..520ba13 100644
--- a/src/main/resources/application-test.yml
+++ b/src/main/resources/application-test.yml
@@ -5,11 +5,11 @@
spring:
profiles:
- active: dev
+ active: app
datasource:
- url: jdbc:mysql://120.27.238.55:3306/kss_framework?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=GMT%2b8
- username: ct_test
- password: 123456
+ url: jdbc:mysql://47.76.217.51:3306/db_base?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=GMT%2b8
+ username: db_base
+ password: P@ssw0rd!123
driver-class-name: com.mysql.jdbc.Driver
type: com.alibaba.druid.pool.DruidDataSource
druid:
@@ -47,35 +47,32 @@
basename: i18n/messages
## redis配置
redis:
- ## Redis数据库索引(默认为0)
- database: 1
- ## Redis服务器地址
- host: 47.114.114.219
- ## Redis服务器连接端口
+ # Redis数据库索引(默认为 0)
+ database: 13
+ # Redis服务器地址
+ host: 47.76.217.51
+ # Redis服务器连接端口
port: 6379
- ## Redis服务器连接密码(默认为空)
- password: biyi123
- jedis:
+ # Redis 密码
+ password: lianghua1!qaz2@WSX
+ 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: 500000
+
rabbitmq:
- host: 120.27.238.55
+ host: 47.76.217.51
port: 5672
- username: ct_rabbit
- password: 123456
+ username: lianghua20210816
+ password: lianghua20210816
publisher-confirm-type: correlated
@@ -93,12 +90,19 @@
app:
debug: false
redis_expire: 3000
+ # k线更新任务控制
kline-update-job: false
- newest-price-update-job: true
- other-job: true
- loop-job: true
- rabbit-consumer: true
- block-job: true
+ #最新价任务控制
+ newest-price-update-job: false
+ #日线 该任务不能与最新价处于同一个服务器
+ day-line: false
+ #其他任务控制
+ other-job: false
+ loop-job: false
+ rabbit-consumer: false
+ block-job: false
+ websocket: false
+ quant: true
aliyun:
oss:
--
Gitblit v1.9.1