【基础使用】项目配置 发表于 2019-12-06 | 分类于 学习笔记 > Mybatis(Plus) | 阅读次数: 基于Springboot的MybatisPlus配置12345678910111213141516171819mybatis-plus: # 扫描 mapper.xml mapper-locations: classpath*:/mapper/*Mapper.xml #typeAliasesPackage: com.act.service.entity global-config: #banner: false db-config: id-type: INPUT #默认值0 logic-delete-value: 1 #默认值1 logic-not-delete-value: 0 configuration: map-underscore-to-camel-case: true cache-enabled: false#pagehelper分页插件配置pagehelper: helperDialect: mysql #设置sql语言 reasonable: true supportMethodsArguments: true params: count=countSql