使用mybatis开启驼峰映射
时间: 2023-06-10 08:05:45 浏览: 121
mybatis mapper映射实体类,多个字符下划线转驼峰
请问您需要了解如何在MyBatis中使用驼峰映射吗?
MyBatis中提供了一个配置选项,在其中设置mapUnderscoreToCamelCase为true可以实现驼峰映射。在这个选项被设置为true时,数据库列名中的下划线’_’将被转换为JavaBean中的驼峰命名方式。这意味着例如数据库表中字段名称为first_name,当使用MyBatis查询的时候,将自动封装为JavaBean中的firstName属性。可以通过以下方式配置:
<configuration>
<settings>
<setting name="mapUnderscoreToCamelCase" value="true"/>
</settings>
</configuration>
当然,也可以在Mapper XML中显式地对每个映射进行配置:
<resultMap id="resultMap" type="User">
<id property="id" column="user_id"/>
<result property="firstName" column="first_name"/>
<result property="lastName" column="last_name"/>
<result property="email" column="email"/>
</resultMap>
这样就能够将数据库表中的first_name字段映射到JavaBean的firstName属性上了。
阅读全文