如果使用mybatis必然需要mybatisGenerator这个神器,它能大大提升开发效率。
maven中配置mybatis Generator
在maven的插件模块配置
<!-- mybatis.generator plugin -->
<plugin>
<groupId>org.mybatis.generator</groupId>
<artifactId>mybatis-generator-maven-plugin</artifactId>
<version>1.3.2</version>
<configuration>
<configurationFile>src/main/resources/mybatisGenerator/generatorConfig.xml</configurationFile>
<verbose>true</verbose>
<overwrite>true</overwrite>
</configuration>
</plugin>
其中configurationFile指定了生成器配置文件的位置。
书写generatorConfig.xml文件
这里不在多言将专门写一篇博文来述说;
使用maven生成文件
配置好后可以直接使用命令生成文件
mybatis-generator:generate
|