12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- server:
- port: 9105
- spring:
- application:
- name: huimv-manager
- servlet:
- multipart:
- max-request-size: 100MB
- max-file-size: 100MB
- datasource:
- url: jdbc:mysql://47.98.175.112:3306/huimv_ql_breed_video?useUnicode=true&characterEncoding=UTF-8&useSSL=false&autoReconnect=true&serverTimezone=Asia/Shanghai
- username: root
- password: hm123456
- driver-class-name: com.mysql.cj.jdbc.Driver
- jpa:
- # show-sql: true
- database: mysql
- # hibernate:
- # ddl-auto: update
- database-platform: org.hibernate.dialect.MySQL5InnoDBDialect
- open-in-view: true
- # 验证码
- #dustlight:
- # captcha:
- # default:
- # store:
- # name: "redisCodeStore"
- # store:
- # redis:
- # key-prefix: "CAPTCHA_CODE"
- redis:
- database: 0
- host: 122.112.224.199
- port: 6379
- password: hm123456
- jedis:
- pool:
- max-active: 20
- max-wait: -1
- max-idle: 10
- min-idle: 0
- timeout: 5000
- # redis:
- # database: 0
- # host: 127.0.0.1
- # port: 6379
- # password:
- # jedis:
- # pool:
- # max-active: 20
- # max-wait: -1
- # max-idle: 10
- # min-idle: 0
- # timeout: 5000
|