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.
39 lines
766 B
39 lines
766 B
spring:
|
|
application:
|
|
name: ms-protocol-xingxing
|
|
profiles:
|
|
active: dev
|
|
server:
|
|
port: 7029
|
|
|
|
mybatis:
|
|
type-aliases-package: com.charge.protocol.model
|
|
mapper-locations: classpath:mappers/*.xml
|
|
config-location: classpath:config/mybatis-config.xml
|
|
|
|
#feign配置
|
|
feign:
|
|
hystrix:
|
|
enabled: true
|
|
okhttp:
|
|
enabled: true
|
|
httpclient:
|
|
enabled: false
|
|
|
|
mapper:
|
|
plugin:
|
|
- tk.mybatis.mapper.generator.MapperPlugin
|
|
Mapper:
|
|
- tk.mybatis.mapper.common.Mapper
|
|
mappers:
|
|
- com.charge.protocol.mapper.BaseMapper
|
|
not-empty: false
|
|
identity: MYSQL
|
|
|
|
pagehelper:
|
|
helperDialect: mysql
|
|
reasonable: true
|
|
supportMethodsArguments: true
|
|
params: count=countSql
|
|
|