| 123456789101112131415161718192021222324252627282930313233343536 |
- server:
- port: 9091
- tomcat:
- uri-encoding: UTF-8
- servlet:
- context-path: /office
- spring:
- http:
- encoding:
- force: true
- charset: utf-8
- enabled: true
- messages:
- basename: i18n/messages
- datasource:
- primary:
- driver-class-name: org.h2.Driver
- jdbc-url: jdbc:h2:file:${user.home}/.qywx/data/qywx;FILE_LOCK=NO;DB_CLOSE_ON_EXIT=FALSE
- username: admin
- password: select111***
- hikari:
- minimum-idle: 5
- maximum-pool-size: 50
- idle-timeout: 30000
- max-lifetime: 1800000
- connection-timeout: 30000
- redis:
- host: 127.0.0.1
- port: 6379
- jackson:
- serialization:
- write-dates-as-timestamps: true
- logging:
- path: ${user.home}/.qywx/logs/
- level:
- com.usoftchina.uas.office: debug
|