| 12345678910111213141516171819202122 |
- # Tomcat
- server:
- port: ${service.port.bottle}
- # mybatis配置
- mybatis-plus:
- global-config:
- db-config:
- table-prefix: ab_
- configuration:
- log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
- call-setters-on-nulls: true
- type-aliases-package: com.zd.bottle.domain
- #分页插件配置
- pagehelper:
- helper-dialect: mysql
- reasonable: true
- support-methods-arguments: true
- page-size-zero: true
- params: count=countSql
|