在我们使用mybatis plus 时, mybatis plus 可以帮我们自动封装我们的实体类用来查询添加,
当我们遇见我们的实体类名与我们的表字段是小驼峰式命名规则写法时mybatis-plus自动添加下划线
将他关闭的方法如下:
1. appliction.yml 里设置 关闭驼峰式编码
mybatis-plus:
configuration:
# 是否开启自动驼峰命名规则(camel case)映射,即从经典数据库列名 A_COLUMN(下划线命名) 到经典 Java 属性名 aColumn(驼峰命名) 的类似映射
map-underscore-to-camel-case: false
2.设值全局匹配设置:
<!-- MP 全局配置 -->
<bean id="globalConfig" class="com.baomidou.mybatisplus.entity.GlobalConfiguration">
<!-- 全局的主键策略 -->
<property name="idType" value="0"/>
<!--映射数据库下划线字段名到数据库实体类的驼峰命名的映射-->
<property name="dbColumnUnderline" value="flase"/>
</bean>