mybatis-generator-xxxx 使用方法
Posted 巴卫
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatis-generator-xxxx 使用方法相关的知识,希望对你有一定的参考价值。
mybatis-generator 下载
自动生成mapper.xml.mapper.java,javabean
下载完成后目录
进入到lib目录下,加入mysql驱动jar包,创建src文件夹,创建generatorConfig.xml文件
在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> <!--MySQL连接驱动--> <classPathEntry location="mysql-connector-java-5.1.9.jar" /> <!--数据库链接URL,用户名、密码 --> <context id="MySQL" targetRuntime="MyBatis3"> <commentGenerator> <property name="suppressDate" value="true"/> <!-- 是否去除自动生成的注释 true:是 : false:否 --> <property name="suppressAllComments" value="true"/> </commentGenerator> <jdbcConnection driverClass="com.mysql.jdbc.Driver" connectionURL="jdbc:mysql://127.0.0.1/hrs" userId="root" password="123456"> </jdbcConnection> <!--是否启用java.math.BigDecimal--> <javaTypeResolver > <property name="forceBigDecimals" value="false" /> </javaTypeResolver> <!--生成po的包名和位置--> <javaModelGenerator targetPackage="cn.behle.hrs.po" targetProject="src"> <property name="enableSubPackages" value="true" /> <property name="trimStrings" value="true" /> </javaModelGenerator> <!--生成映射文件的包名和位置--> <sqlMapGenerator targetPackage="cn.behle.hrs.mapper" targetProject="src"> <property name="enableSubPackages" value="true" /> </sqlMapGenerator> <!--生成DAO的包名和位置--> <javaClientGenerator type="XMLMAPPER" targetPackage="cn.behle.hrs.mapper" targetProject="src"> <property name="enableSubPackages" value="true" /> </javaClientGenerator> <!--要生成的表 tableName是数据库中的表名或视图名 domainObjectName是实体类名--> <table tableName="user" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"> </table> <table tableName="position" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"> </table> <table tableName="department" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"> </table> </context> </generatorConfiguration>
然后打开命令行
进去到lib目录下
然后输入
//注意mybatis-generator包版本和xml文件名字 java -jar mybatis-generator-core-1.3.2.jar -configfile generatorConfig.xml -overwrite
以上是关于mybatis-generator-xxxx 使用方法的主要内容,如果未能解决你的问题,请参考以下文章
在使用加载数据流步骤的猪中,使用(使用 PigStorage)和不使用它有啥区别?
Qt静态编译时使用OpenSSL有三种方式(不使用,动态使用,静态使用,默认是动态使用)