使用mybatis开启驼峰映射
时间: 2023-06-10 12:05:45 浏览: 124
请问您需要了解如何在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属性上了。
相关问题
mybatis开启驼峰映射
Mybatis-plus开启驼峰映射可以在配置文件中配置,如下:
```
mybatis-plus:
configuration:
map-underscore-to-camel-case: true
```
还可以在实体类上加注解@TableName(value = "表名", resultMap = "BaseResultMap") 来开启驼峰映射
springboot中mybatis实现驼峰映射
在SpringBoot中,可以通过设置map-underscore-to-camel-case属性为true来开启驼峰映射功能。这个属性的作用是将数据库中下划线命名的字段转换为驼峰命名的属性。这样,在使用MyBatis进行数据库查询时,查询结果会自动封装到对应的JavaBean中,而且下划线命名的字段不会出现null值的情况。因此,如果你想要在SpringBoot中使用MyBatis实现驼峰映射,可以在配置文件中将map-underscore-to-camel-case属性设置为true。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* *2* *3* [使用 SpringBoot 整合 MyBatis 开发 开启驼峰映射功能](https://blog.csdn.net/universsky2015/article/details/119028309)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_1"}}] [.reference_item style="max-width: 100%"]
[ .reference_list ]
阅读全文