使用Generator 自动生成 model mappermapping 文件

恢弘志士之气,不宜妄自菲薄。这篇文章主要讲述使用Generator 自动生成 model mappermapping 文件相关的知识,希望能为你提供帮助。
1.下载包 地址http://download.csdn.net/detail/u012909091/7206091 2.下载完成解压文件到任意目录 3.删除下mybatis-generator-core-1.3.2\\mybatis-generator-core-1.3.2\\lib\\src下的所有文件

使用Generator 自动生成 model mappermapping 文件

文章图片
 
4.修改配置文件 mybatis-generator-core-1.3.2\\mybatis-generator-core-1.3.2\\lib\\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="mysql-connector-java-5.1.25-bin.jar"/> < context id="DB2Tables" targetRuntime="MyBatis3"> < commentGenerator> < property name="suppressDate" value="https://www.songbingjia.com/android/true"/> < !-- 是否去除自动生成的注释 true:是 : false:否 --> < property name="suppressAllComments" value="https://www.songbingjia.com/android/true"/> < /commentGenerator> < !--数据库链接URL,用户名、密码 --> < jdbcConnection driverClass="com.mysql.jdbc.Driver" connectionURL="jdbc:mysql://localhost:3306/generator" userId="root" password="249832"> < /jdbcConnection> < javaTypeResolver> < property name="forceBigDecimals" value="https://www.songbingjia.com/android/false"/> < /javaTypeResolver> < !-- 生成模型的包名和位置--> < javaModelGenerator targetPackage="test.domain" targetProject="src"> < property name="enableSubPackages" value="https://www.songbingjia.com/android/true"/> < property name="trimStrings" value="https://www.songbingjia.com/android/true"/> < /javaModelGenerator> < !-- 生成映射文件的包名和位置--> < sqlMapGenerator targetPackage="test.mapping" targetProject="src"> < property name="enableSubPackages" value="https://www.songbingjia.com/android/true"/> < /sqlMapGenerator> < !-- 生成DAO的包名和位置--> < javaClientGenerator type="XMLMAPPER" targetPackage="test.IDao" targetProject="src"> < property name="enableSubPackages" value="https://www.songbingjia.com/android/true"/> < /javaClientGenerator> < !-- 要生成的表 tableName是数据库中的表名或视图名 domainObjectName是实体类名--> < table tableName="test" domainObjectName="Test" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"> < /table> < /context> < /generatorConfiguration>  
使用Generator 自动生成 model mappermapping 文件

文章图片
 
5.使用cmd 进入所在目录 cd C:\\Users\\fxl\\Desktop\\mybatis-generator-core-1.3.2\\mybatis-generator-core-1.3.2\\lib\\src
使用Generator 自动生成 model mappermapping 文件

文章图片
【使用Generator 自动生成 model mappermapping 文件】 
输入命令 java  -jar  mybatis-generator-core-1.3.2.jar  -configfile  generatorConfig.xml  -overwrite
使用Generator 自动生成 model mappermapping 文件

文章图片
 
6.生成完成 到lib目录下找到指定文件即可
使用Generator 自动生成 model mappermapping 文件

文章图片
 
     

    推荐阅读