mybatis-plus代码生成器设置驼峰命名
时间: 2023-09-04 17:16:33 浏览: 365
要设置Mybatis-Plus代码生成器使用驼峰命名,需要在代码生成器的配置文件中添加以下配置:
```xml
<strategy>
<entityLombokModel>true</entityLombokModel>
<naming>
<columnNaming>underline_to_camel</columnNaming>
</naming>
</strategy>
```
其中,`columnNaming`属性设置为`underline_to_camel`表示将下划线命名转换为驼峰命名。此外,`entityLombokModel`属性设置为`true`表示生成实体类时使用Lombok注解。
完整的配置文件示例:
```xml
<configuration>
<dataSource type="com.baomidou.mybatisplus.generator.config.DataSourceConfig">
<driverName>com.mysql.jdbc.Driver</driverName>
<url>jdbc:mysql://localhost:3306/mybatis-plus</url>
<username>root</username>
<password>root</password>
</dataSource>
<packageConfig>
<parent>com.example</parent>
<moduleName>mybatisplus</moduleName>
<controller>controller</controller>
<service>service</service>
<serviceImpl>service.impl</serviceImpl>
<mapper>mapper</mapper>
<entity>entity</entity>
</packageConfig>
<strategy>
<entityLombokModel>true</entityLombokModel>
<naming>
<columnNaming>underline_to_camel</columnNaming>
</naming>
</strategy>
<template>
<controller></controller>
<service></service>
<serviceImpl></serviceImpl>
<mapper></mapper>
<entity></entity>
</template>
<globalConfig>
<outputDir>/Users/example/Desktop/codegen</outputDir>
<fileOverride>true</fileOverride>
<open>false</open>
</globalConfig>
</configuration>
```
阅读全文