MyBatis Generator 的配置方法有两种:使用命令行工具和在 Maven 或 Ant 构建脚本中配置。
使用命令行工具配置 MyBatis Generator:
java -jar mybatis-generator-core-x.x.x.jar -configfile mybatis-generator-config.xml
mybatis-generator-core-x.x.x.jar
是 MyBatis Generator 的核心 JAR 文件的名称和版本号,mybatis-generator-config.xml
是你的配置文件。在 Maven 或 Ant 构建脚本中配置 MyBatis Generator:
<build>
标签中的 <plugins>
标签内配置 MyBatis Generator 插件。示例配置如下:<plugin>
<groupId>org.mybatis.generator</groupId>
<artifactId>mybatis-generator-maven-plugin</artifactId>
<version>x.x.x</version>
<executions>
<execution>
<id>generate</id>
<phase>generate-sources</phase>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
<configuration>
<configurationFile>src/main/resources/mybatis-generator-config.xml</configurationFile>
<overwrite>true</overwrite>
<verbose>true</verbose>
</configuration>
</plugin>
<target>
标签内配置 MyBatis Generator 任务。示例配置如下:<target name="generate">
<java classname="org.mybatis.generator.api.ShellRunner" fork="true">
<jvmarg value="-Dfile.encoding=UTF-8"/>
<arg value="-configfile"/>
<arg value="src/main/resources/mybatis-generator-config.xml"/>
<arg value="-overwrite"/>
</java>
</target>
x.x.x
是 MyBatis Generator 插件的版本号,src/main/resources/mybatis-generator-config.xml
是你的配置文件的路径。无论你选择哪种配置方法,你都需要创建一个 MyBatis Generator 的配置文件(一般命名为 mybatis-generator-config.xml
),并在其中定义你的代码生成规则和要生成的内容。配置文件的详细格式和选项可以参考 MyBatis Generator 官方文档:https://mybatis.org/generator/configreference/xmlconfig.html