1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| server:
| port: 8888
|
| spring:
| profiles:
| active: okx
| autoconfigure:
| exclude:
| # 移除不需要的自动配置
| - org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration
| - org.springframework.boot.autoconfigure.security.servlet.SecurityAutoConfiguration
| - org.springframework.boot.autoconfigure.amqp.RabbitAutoConfiguration
| - org.springframework.boot.autoconfigure.data.redis.RedisAutoConfiguration
|
| app:
| # OKX 量化策略开关
| quant: true
|
|