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.
30 lines
625 B
30 lines
625 B
12 months ago
|
spring:
|
||
|
application:
|
||
|
name: ms-task
|
||
|
profiles:
|
||
|
active: dev
|
||
|
server:
|
||
|
port: 7021
|
||
|
|
||
|
mybatis:
|
||
|
type-aliases-package: com.charge.task.model
|
||
|
mapper-locations: classpath:mappers/*.xml
|
||
|
config-location: classpath:config/mybatis-config.xml
|
||
|
|
||
|
mapper:
|
||
|
plugin:
|
||
|
- tk.mybatis.mapper.generator.MapperPlugin
|
||
|
Mapper:
|
||
|
- tk.mybatis.mapper.common.Mapper
|
||
|
mappers:
|
||
|
- com.charge.task.mapper.BaseMapper
|
||
|
not-empty: false
|
||
|
identity: MYSQL
|
||
|
|
||
|
pagehelper:
|
||
|
helperDialect: mysql
|
||
|
reasonable: true
|
||
|
supportMethodsArguments: true
|
||
|
params: count=countSql
|
||
|
|