| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- server:
- port: 8080
- servlet:
- context_path: /
- compression:
- enabled: true
- mime-types: application/json,application/xml,text/html,text/xml,text/plain
- error:
- whitelabel:
- enabled: false
- spring:
- profiles:
- active: dev
- datasource:
- url: jdbc:mysql://mysql.izouma.com/zhuoka_test?useUnicode=true&characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull&allowMultiQueries=true&useSSL=false&serverTimezone=GMT%2b8
- username: microball
- password: 2wsx@WSX#EDC
- # url: jdbc:mysql://localhost/zhuoka?useUnicode=true&characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull&allowMultiQueries=true&useSSL=false&serverTimezone=GMT%2b8
- # username: root
- # password: william
- hikari:
- minimum-idle: 5
- maximum-pool-size: 30
- auto-commit: true
- idle-timeout: 30000
- max-lifetime: 1800000
- connection-timeout: 30000
- connection-test-query: SELECT 1
- jpa:
- database: MySQL
- database_platform: org.hibernate.dialect.MySQL5InnoDBDialect
- hibernate:
- ddl_auto: update
- properties:
- hibernate:
- enable_lazy_load_no_trans: true
- redis:
- host: 127.0.0.1
- port: 6379
- lettuce:
- pool:
- max_active: 8
- max_idle: 8
- min_idle: 0
- servlet:
- multipart:
- max_file_size: 100MB
- max_request_size: 100MB
- freemarker:
- settings:
- number_format: 0
- cache:
- type: caffeine
- jwt:
- secret: XvAD0kboD76Dpebm
- header: Authorization
- expiration: 2592000 #30days
- wx:
- mp:
- app_id: wxf3120271892d4f18
- app_secret: 0f8057f216e7938ecc1ce8a8d55f46d3
- ma:
- app_id: wxf3120271892d4f18
- app_secret: 0f8057f216e7938ecc1ce8a8d55f46d3
- msg_token: msgToken
- msg_aes_key: aesKey
- msg_format: JSON
- pay:
- appId: wx2d18419d1c19da82
- mchId: 1616287190
- mchKey: PtAI0ylyqvEVuWwYcKIBaenPwHEh4pkL
- subAppId: #wxf3120271892d4f18
- subMchId: #1617297545
- # appId: wxf3120271892d4f18
- # mchId: 1609404754
- # mchKey: mPtQOlBBWIBLXe3Z1RY0sABzWCAjeWfl
- # subAppId: #服务商模式下的子商户公众账号ID
- # subMchId: #服务商模式下的子商户号
- keyPath: classpath:/cert/apiclient_cert.p12
- notifyUrl: http://zhuoka.izouma.com/wx/payNotify
- refundNotifyUrl: http://zhuoka.izouma.com/wx/refundNotify
- storage:
- provider: aliyun
- local_path: /var/www/upload/
- aliyun:
- access-key-id: PXzJyah5rZfWHIIH
- access-key-secret: e1MS6j0wypXJrw8CM0hObZu8qKbfah
- oss-end-point: oss-cn-hangzhou.aliyuncs.com
- oss-bucket-name: ticket-exchange
- oss-domain: https://ticket-exchange.oss-cn-hangzhou.aliyuncs.com
- general:
- host: http://zhuoka.izouma.com
- ---
- spring:
- profiles: test
- ---
- spring:
- profiles: prod
- datasource:
- url: jdbc:mysql://mysql.izouma.com/zhuoka?useUnicode=true&characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull&allowMultiQueries=true&useSSL=false&serverTimezone=GMT%2b8
|