配置mybatis-plus的驼峰转化
时间: 2023-11-17 11:09:02 浏览: 100
Mybatis-Plus 默认使用驼峰命名规则,如果需要启用下划线转驼峰规则,可以在配置文件中添加以下配置:
```xml
<configuration>
<global-config>
<db-config>
<!-- 开启驼峰命名 -->
<column-underline-to-camel>true</column-underline-to-camel>
<!-- 关闭大写命名 -->
<capital-mode>false</capital-mode>
</db-config>
</global-config>
</configuration>
```
其中,`column-underline-to-camel` 表示是否开启下划线转驼峰规则,`capital-mode` 表示是否开启大写命名。将 `column-underline-to-camel` 设置为 true 即可开启下划线转驼峰规则。
阅读全文