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.
25 lines
652 B
25 lines
652 B
|
6 years ago
|
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: username
|
||
|
|
password: password
|
||
|
|
|
||
|
|
mybatis-plus:
|
||
|
|
mapper-locations:
|
||
|
|
- classpath*:/mapper/**/*.xml
|
||
|
|
configuration:
|
||
|
|
map-underscore-to-camel-case: false
|
||
|
|
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
|