mybatis驼峰命名怎么配置

avatar
作者
猴君
阅读量:2

在MyBatis中配置驼峰命名可以通过在配置文件中添加以下设置实现:

  1. 在mybatis-config.xml或者application.properties中配置:
<settings>     <setting name="mapUnderscoreToCamelCase" value="true"/> </settings> 
  1. 在SpringBoot中配置application.properties文件:
mybatis.configuration.map-underscore-to-camel-case=true 

这样配置之后,MyBatis会自动将数据库中的下划线命名转换为驼峰命名,例如数据库字段名为user_name,会被映射为Java类属性名为userName。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!