当前位置: 首页 > 工具软件 > Mybatis-Flex > 使用案例 >

mybatis -plus 将数据库中表名和字段名中的下划线去掉并且按照驼峰命名法映射

罗智志
2023-12-01

application.yml 配置

mybatis-plus:
  configuration:
    #在映射实体或者属性时,将数据库中表名和字段名中的下划线去掉,按照驼峰命名法映射
    map-underscore-to-camel-case: true
    log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
  global-config:
    db-config:
      id-type: ASSIGN_ID
 类似资料: