springboot配置处理mybatis带有下划线数据库字段无法映射实体,解决驼峰命名映射问题

1.问题

接口请求后查询发现返回的部分数据为null,都是大小写字段驼峰命名的为空

[{"id":1,"userName":null,"phone":"13126789145","province":"03","userAccount":null,"userPassword":null}]

2.代码文件配置

(1)数据库设计字段为:
create table DEMO_USER
(
  id            NUMBER(10) not null,
  user_name     VARCHAR2(100),
  phone         VARCHAR2(30),
  province      VARCHAR2(50),
  user_account  VARCHAR2(50),
  user_password VARCHAR2(50)
)
(2)对应实体:
public class DemoUserEntity implements Serializable {
    private static final long serialVersionUID = 1L;

    /**
     * $column.comments
     */

    private Integer id;
    /**
     * $column.comments
     */
    private String userName;
    /**
     * $column.comments
     */
    private String phone;
    /**
     * $column.comments
     */
    private String province;
    /**
     * $column.comments
     */
    private String userAccount;
    /**
     * $column.comments
     */
    private String userPassword;

}

(3)springboot项目配置文件 application.properties
#mybatis的相关配置
#mybatis.config-locations=classpath:mybatis/mybatis-config.xml
#mapper配置文件
mybatis.mapper-locations=classpath:mapper/*.xml
#mybatis.type-aliases-package=com.beiluo.demo.entity

3.解决方案

添加配置如下

#开启驼峰命名 处理下划线映射到实体
#mybatis.configuration.map-underscore-to-camel-case=true

最后springboot项目配置文件 application.properties为

#mybatis的相关配置
#mybatis.config-locations=classpath:mybatis/mybatis-config.xml
#mapper配置文件
mybatis.mapper-locations=classpath:mapper/*.xml
#mybatis.type-aliases-package=com.beiluo.demo.entity
#开启驼峰命名 处理下划线映射到实体
mybatis.configuration.map-underscore-to-camel-case=true

查询后有数据

[{"id":1,"userName":"张三","phone":"13126789145","province":"03","userAccount":"zhangsan","userPassword":"zhangsan"}]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值