Mybatis Generator代码自动生成(实体类dao层映射文件)
Posted 代码可乐
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mybatis Generator代码自动生成(实体类dao层映射文件)相关的知识,希望对你有一定的参考价值。
写了一段时间增删改查有点厌烦,自己找了下网上的例子鼓捣了下自动生成。
首先得有一个配置文件:
generatorConfig.xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE generatorConfiguration
PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN"
"http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd">
<generatorConfiguration>
<!-- 数据库驱动:选择你的本地硬盘上面的数据库驱动包-->
<classPathEntry location="D:
epositorycomoracleojdbc611.2.0.4.0ojdbc6-11.2.0.4.0.jar"/>
<context id="DB2Tables" targetRuntime="MyBatis3">
<commentGenerator>
<property name="suppressDate" value="true"/>
<!-- 是否去除自动生成的注释 true:是 : false:否 -->
<property name="suppressAllComments" value="true"/>
</commentGenerator>
<!--数据库链接URL,用户名、密码 -->
<jdbcConnection driverClass="oracle.jdbc.driver.OracleDriver" connectionURL="jdbc:oracle:thin:@xx.xxx.xxx.xx:端口/服务名" userId="用户名" password="密码">
</jdbcConnection>
<javaTypeResolver>
<property name="forceBigDecimals" value="false"/>
</javaTypeResolver>
<!-- 生成模型的包名和位置-->
<javaModelGenerator targetPackage="com.名字.名字.generatordemo.domain" targetProject="src/main/java">
<property name="enableSubPackages" value="true"/>
<property name="trimStrings" value="true"/>
</javaModelGenerator>
<!-- 生成映射文件的包名和位置-->
<sqlMapGenerator targetPackage="resources.mybatis.generatordemo" targetProject="src/main">
<property name="enableSubPackages" value="true"/>
</sqlMapGenerator>
<!-- 生成DAO的包名和位置-->
<javaClientGenerator type="XMLMAPPER" targetPackage="com.名字.名字.generatordemo.dao" targetProject="src/main/java">
<property name="enableSubPackages" value="true"/>
</javaClientGenerator>
<!-- 要生成的表 tableName是数据库中的表名或视图名 domainObjectName是实体类名-->
<table tableName="t_sys_user" domainObjectName="User" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>
</context>
</generatorConfiguration>
在有备注的位置是需要修改的地方。
然后还得有mybatis-generator-core-1.3.5.jar版本自己选,然后把配置文件和这个jar放在项目目录下或者自己找个专门的文件夹放代码自动生成。
然后在cmd命令窗口切换到对应目录或者自己的文件夹下执行该命令:
java -jar mybatis-generator-core-1.3.2.jar -configfile generatorConfig.xml -overwrite
刷新项目后可看到要指定生成的文件已经自动生成在对应目录下。
以上是关于Mybatis Generator代码自动生成(实体类dao层映射文件)的主要内容,如果未能解决你的问题,请参考以下文章
使用Mybatis Generator自动生成Mybatis相关代码
mybatis-generator 自动生成mybatis代码与xml
mybatis代码生成器——MyBatis Generator
13.1 MyBatis Generator概述(MyBatis Generator逆向代码生成工具) -《SSM深入解析与项目实战》