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
595 B
24 lines
595 B
spring:
|
|
datasource:
|
|
driver-class-name: com.mysql.cj.jdbc.Driver
|
|
url: jdbc:mysql://localhost:3306/repo?serverTimezone=UTC&useUnicode=true&characterEncoding=utf-8&useSSL=true
|
|
username:
|
|
password:
|
|
|
|
mybatis-plus:
|
|
mapper-locations:
|
|
- classpath*:/mapper/**/*.xml
|
|
configuration:
|
|
local-cache-scope: STATEMENT
|
|
cache-enabled: false
|
|
#log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
|
|
global-config:
|
|
banner: false
|
|
db-config:
|
|
id-type: NONE
|
|
|
|
pagehelper:
|
|
helperDialect: mysql
|
|
reasonable: true
|
|
supportMethodsArguments: true
|
|
params: count=countSql |