You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
787 B
24 lines
787 B
server:
|
|
port: 8085
|
|
spring:
|
|
datasource:
|
|
url: jdbc:mysql://127.0.0.1:3306/yami_shops?allowMultiQueries=true&useSSL=false&useUnicode=true&characterEncoding=UTF-8&autoReconnect=true&zeroDateTimeBehavior=convertToNull&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2B8&nullCatalogMeansCurrent=true
|
|
username: root
|
|
password: root
|
|
driver-class-name: com.mysql.cj.jdbc.Driver
|
|
type: com.zaxxer.hikari.HikariDataSource
|
|
hikari:
|
|
minimum-idle: 0
|
|
maximum-pool-size: 20
|
|
idle-timeout: 10000
|
|
auto-commit: true
|
|
connection-test-query: SELECT 1
|
|
cache:
|
|
type: redis
|
|
redis:
|
|
cache-null-values: true
|
|
redis:
|
|
redisson:
|
|
config: classpath:redisson.yml
|
|
logging:
|
|
config: classpath:log4j2_dev.xml |