map-underscore-to-camel-case配置

mybatis默认是属性名和数据库字段名一一对应的,即

数据库表列:address_book
实体类属性:address_book

在映射实体或者属性时,将数据库中表名和字段名中的下划线去掉,按照驼峰命名法映射

例如:address_book—> addressBook
此属性在 MyBatis 中默认值为 false,在Springboot中,可以通过设置map-underscore-to-camel-case属性为true来开启驼峰功能。
application.yml中:

//在mybatis-plus中
mybatis-plus:
  configuration:
    map-underscore-to-camel-case: true
//在mybatis中: 
mybatis:
  configuration:
    map-underscore-to-camel-case: true

你可能感兴趣的:(mybatis,java,数据库,spring,boot)