在IDEA 使用 MyBatis Generator自动生成代码
前些日子,在网上依照mybatis自动生成代码,一直没有成功。当时为了赶项目,就直接复制修改了。今天再次在项目中使用生成发现还是无法生成。于是新建了一个项目,成功了,完整记录一下。第一步,是pom文件的jar引入:必不可少的mybatis,mysql。需要额外添加的是:<plugin>&am
前些日子,在网上依照mybatis自动生成代码,一直没有成功。当时为了赶项目,就直接复制修改了。
今天再次在项目中使用生成发现还是无法生成。于是新建了一个项目,成功了,完整记录一下。
第一步,是pom文件的jar引入:必不可少的mybatis,mysql。需要额外添加的是:
<plugin>
<groupId>org.mybatis.generator</groupId>
<artifactId>mybatis-generator-maven-plugin</artifactId>
<version>1.3.2</version>
<configuration>
<verbose>true</verbose>
<overwrite>true</overwrite>
</configuration>
</plugin>
接下来是项目结构,写好对应的mapping,dao,po等文件夹;
第二步:在generatorConfig.xml配置好对应的。
1.jar的路径:
<classPathEntry
location="C:\Users\wuchenxuan\.m2\repository\mysql\mysql-connector-java\5.1.46\mysql-connector-java-5.1.46.jar"/>
2.数据库的用户名和密码的配置
<jdbcConnection driverClass="com.mysql.jdbc.Driver"
connectionURL="jdbc:mysql://localhost:3306/blog?characterEncoding=utf8" userId="root"
password=""/>
<javaTypeResolver>
3.po生成代码位置的配置:
<javaModelGenerator
targetPackage="com.example.demo.po"
targetProject="D:\generatorConfig\src\main\java">
<property name="enableSubPackages" value="true"/>
<property name="trimStrings" value="true"/>
<property name="suppressAllComments" value="true" />
</javaModelGenerator>
4.生成mapping文件的位置配置:
<sqlMapGenerator targetPackage="mapping"
targetProject="D:\generatorConfig\src\main\resources">
<property name="enableSubPackages" value="true"/>
<property name="suppressAllComments" value="true" />
</sqlMapGenerator>
5.生成dao接口的位置配置:
<javaClientGenerator type="XMLMAPPER"
targetPackage="com.example.demo.dao"
targetProject="D:\generatorConfig\src\main\java">
<property name="enableSubPackages" value="true"/>
<property name="suppressAllComments" value="true" />
</javaClientGenerator>
6.对具体表的设置:
<table tableName="t_user" domainObjectName="TUserPO"
enableCountByExample="false" enableUpdateByExample="false"
enableDeleteByExample="false" enableSelectByExample="false"
selectByExampleQueryId="false">
<property name="useActualColumnNames" value="true"/>
</table>
第三步:设置Edit Configurations
第四步:进行添加新的要运行的run,新建maven
第五步:在这里面进行对应的配置
配置内容:
working directory: 项目路径
command line: mybatis-generator:generate -e
第六步:点击APPly ,然后OK。配置成功。
第七步:在项目中点击run既可成功。
代码上传到了github上:
https://github.com/virtuousOne/generatorConfig/tree/master
更多推荐
所有评论(0)