| 1234567891011121314151617181920212223242526272829303132333435 |
- spring:
- mvc:
- pathmatch:
- matching-strategy: ant_path_matcher
- 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: bj-crs-bps4d3sk.sql.tencentcdb.com
- #数据库端口 默认为6379
- port: 22573
- #数据库密码
- password: hSx8nUrQkR7ZKaw
- timeout: 10000ms # 连接超时时间(毫秒)
- lettuce:
- pool:
- max-active: 8 # 连接池最大连接数(负值为没有限制)
- max-wait: -1ms # 连接池最大阻塞等待时间(负值为没有限制)
- max-idle: 8 # 连接池中的最大空闲连接
- min-idle: 0 # 连接池中的最小空闲连接
- param:
- #专网地址
- local-url: http://10.152.101.6:8080/net-diag-service/openapi/api
- #外网地址
- url: https://imssp.wsjk.tj.gov.cn/net-diag-service/openapi/api
- #一次性数据提交限制的数量
- listNumber: 1000
|