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.
31 lines
699 B
31 lines
699 B
server:
|
|
port: 9291
|
|
spring:
|
|
application:
|
|
name: market-server
|
|
datasource:
|
|
druid:
|
|
driver-class-name: com.mysql.cj.jdbc.Driver
|
|
password: 123456
|
|
username: root
|
|
url: jdbc:mysql://localhost:3306/supermarket_manager?serverTimezone=UTC&useUnicode=true&characterEncoding=utf-8&useSSL=true&allowPublicKeyRetrieval=true
|
|
redis:
|
|
host: localhost
|
|
port: 6379
|
|
password:
|
|
mvc:
|
|
async:
|
|
request-timeout: 20000
|
|
jackson:
|
|
time-zone: GMT+8
|
|
servlet:
|
|
multipart:
|
|
max-file-size: 1GB
|
|
max-request-size: 1GB
|
|
mybatis-plus:
|
|
mapper-locations: classpath:com/rabbiter/market/mapper/*Mapper.xml
|
|
logging:
|
|
level:
|
|
cn.dingli.market.mapper: debug
|
|
|