30 lines
647 B
YAML
30 lines
647 B
YAML
server:
|
|
port: 8080
|
|
|
|
spring:
|
|
datasource:
|
|
#MySQL配置
|
|
driverClassName: com.mysql.cj.jdbc.Driver
|
|
username: root
|
|
password: 123456
|
|
url: jdbc:mysql://localhost:3309/springboot?useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=UTC
|
|
main:
|
|
allow-circular-references: true
|
|
servlet:
|
|
multipart:
|
|
max-file-size: 20MB
|
|
max-request-size: 20MB
|
|
#mybatis配置
|
|
mybatis:
|
|
mapper-locations: classpath:mapper/*.xml
|
|
type-aliases-package: com.example.demo1.entity
|
|
|
|
#分页查询
|
|
pagehelper:
|
|
helper-dialect: mysql
|
|
reasonable: true
|
|
support-methods-arguments: true
|
|
params: count=countSql
|
|
|
|
|