chore(config): 更新测试环境配置信息
- 更改阿里云LLM策略服务的API密钥
- 更新测试数据库用户名和密码,修改数据库连接URL为本地地址
- 修改Redis服务器地址为本地,并更新密码配置
- 将RabbitMQ主机地址更改为本地地址
| | |
| | | |
| | | private GenerationParam generationParam; |
| | | |
| | | private static final String apiKey = "sk-babdcf8799144134915cee2683794b2f"; |
| | | private static final String apiKey = "sk-4b97b556ba7c4350a41f2856f75b9377"; |
| | | private static final String model = "qwen-plus"; |
| | | // private static final String model = "qwen3-14b-ft-202509031002-7446"; |
| | | |
| | |
| | | datasource: |
| | | # 数据源-1,名称为 base |
| | | base: |
| | | username: ct_test |
| | | password: 123456 |
| | | username: ai_one |
| | | password: ai_one!@#123 |
| | | driver-class-name: com.mysql.cj.jdbc.Driver |
| | | url: jdbc:mysql://8.166.133.146:3306/ai_one?useUnicode=true&characterEncoding=UTF-8&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2b8 |
| | | url: jdbc:mysql://127.0.0.1:3306/ai_one?useUnicode=true&characterEncoding=UTF-8&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2b8 |
| | | |
| | | redis: |
| | | # Redis数据库索引(默认为 0) |
| | | database: 1 |
| | | # Redis服务器地址 |
| | | host: 8.166.133.146 |
| | | host: 127.0.0.1 |
| | | # Redis服务器连接端口 |
| | | port: 6379 |
| | | # Redis 密码 |
| | | password: 1!qaz2@WSX |
| | | password: 1234!@#$!QAZ |
| | | lettuce: |
| | | pool: |
| | | # 连接池中的最小空闲连接 |
| | |
| | | # 连接超时时间(毫秒) |
| | | timeout: 5000000 |
| | | rabbitmq: |
| | | host: 120.27.238.55 |
| | | host: 127.0.0.1 |
| | | port: 5672 |
| | | username: ct_rabbit |
| | | password: 123456 |