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.
29 lines
890 B
29 lines
890 B
server:
|
|
port: 8080
|
|
spring:
|
|
application:
|
|
#应用的名称,可选
|
|
name: reggie_take_out
|
|
datasource:
|
|
druid:
|
|
driver-class-name: com.mysql.cj.jdbc.Driver
|
|
url: jdbc:mysql://localhost:3306/reggie?serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowPublicKeyRetrieval=true
|
|
username: root
|
|
password: yjx062711.
|
|
redis:
|
|
host: localhost
|
|
port: 6379
|
|
database: 0
|
|
cache:
|
|
redis:
|
|
time-to-live: 1800000 #设置缓存数据的过期时间
|
|
mybatis-plus:
|
|
configuration:
|
|
#在映射实体或者属性时,将数据库中表名和字段名中的下划线去掉,按照驼峰命名法映射
|
|
map-underscore-to-camel-case: true
|
|
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
|
|
global-config:
|
|
db-config:
|
|
id-type: ASSIGN_ID
|
|
takeout:
|
|
path: D:\img\ |