123456789101112131415161718192021222324252627282930313233343536 |
- server:
- port: 8201
- spring:
- datasource:
- url: jdbc:mysql://192.168.1.7:3306/huimv-video_db?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:
- hibernate:
- ddl-auto: update #validate
- database-platform: org.hibernate.dialect.MySQL5InnoDBDialect
- show-sql: true
- servlet:
- multipart:
- max-file-size: 100MB
- max-request-size: 1000MB
- mvc:
- view:
- prefix: /
- suffix: .html
- main:
- allow-bean-definition-overriding: true
- # redis:
- # database: 0
- # host: 124.71.192.190
- # port: 6379
- # password: hm123456
- # jedis:
- # pool:
- # max-active: 20
- # max-wait: -1
- # max-idle: 10
- # min-idle: 0
- # timeout: 5000
|