MyBatis Generator 的配置方法有兩種:使用命令行工具和在 Maven 或 Ant 構(gòu)建腳本中配置。
使用命令行工具配置 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 構(gòu)建腳本中配置 MyBatis Generator:
<build>
標簽中的 <plugins>
標簽內(nèi)配置 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>
標簽內(nèi)配置 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
是你的配置文件的路徑。無論你選擇哪種配置方法,你都需要創(chuàng)建一個 MyBatis Generator 的配置文件(一般命名為 mybatis-generator-config.xml
),并在其中定義你的代碼生成規(guī)則和要生成的內(nèi)容。配置文件的詳細格式和選項可以參考 MyBatis Generator 官方文檔:https://mybatis.org/generator/configreference/xmlconfig.html