| 123456789101112131415161718192021222324252627282930313233 |
- spring:
- datasource:
- driver-class-name: com.mysql.cj.jdbc.Driver
- url: jdbc:mysql://bj-cdb-nbje9oq2.sql.tencentcdb.com:59747/yzky_test?useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=GMT%2B8&allowMultiQueries=true
- username: yzky
- password: XxMziITdKF0pw0y
- jpa:
- show-sql: true # 开启控制台SQL日志
- hibernate:
- ddl-auto: update # 自动创建、更新或验证数据库表结构
- database-platform: org.hibernate.dialect.MySQL5InnoDBDialect # 指定数据库方言
- redis:
- database: 0
- host: 82.157.27.202
- port: 6379
- password: hSx8nUrQkR7ZKaw # 密码为空则不设置此项或设置为null
- timeout: 10000ms # 连接超时时间(毫秒)
- lettuce:
- pool:
- max-active: 8 # 连接池最大连接数(负值为没有限制)
- max-wait: -1ms # 连接池最大阻塞等待时间(负值为没有限制)
- max-idle: 8 # 连接池中的最大空闲连接
- min-idle: 0 # 连接池中的最小空闲连接
- param:
- unitID: 20250228091949564
- #专网地址
- local-url: http://10.152.101.6:8080/net-diag-service/test-openapi/api
- #外网地址
- url: https://imssp.wsjk.tj.gov.cn/net-diag-service/test-openapi/api
- #测试appSecret
- appSecret: 26b0e2f6efb44017bd03d53eb5505fcf
- #测试appKey
- appKey: 9a35011886154dc3
|