基本信息
源码名称:基于idea的逆向工程源码文件
源码大小:0.06M
文件格式:.rar
开发语言:Java
更新时间:2019-05-22
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍

mybatis官方提供逆向工程 可以针对单表自动生成mybatis执行所需要的代码,实际开发中,常用的逆向工程方式:由数据库的表生成java代码

核心配置文件

<?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>  <context id="testTables" targetRuntime="MyBatis3">  <commentGenerator>  <!-- 是否去除自动生成的注释 true:是 : false:否 -->  <property name="suppressAllComments" value="true" />  </commentGenerator>  <!--数据库连接的信息:驱动类、连接地址、用户名、密码 -->  <jdbcConnection driverClass="com.mysql.jdbc.Driver"  connectionURL="jdbc:mysql://localhost:3306/mengxuegu" userId="root"  password="411594">  </jdbcConnection>  <!-- <jdbcConnection driverClass="oracle.jdbc.OracleDriver"  connectionURL="jdbc:oracle:thin:@127.0.0.1:1521:yycg"  userId="yycg"  password="yycg">  </jdbcConnection> -->   <!-- 默认false,把JDBC DECIMAL 和 NUMERIC 类型解析为 Integer,为 true时把JDBC DECIMAL 和  NUMERIC 类型解析为java.math.BigDecimal -->  <javaTypeResolver>  <property name="forceBigDecimals" value="false" />  </javaTypeResolver>   <!-- targetProject:生成PO类的位置 -->  <javaModelGenerator targetPackage="com.mengxuegu.po"  targetProject=".\src">  <!-- enableSubPackages:是否让schema作为包的后缀 -->  <property name="enableSubPackages" value="false" />  <!-- 从数据库返回的值被清理前后的空格 -->  <property name="trimStrings" value="true" />  </javaModelGenerator>  <!-- targetProject:mapper映射文件生成的位置 -->  <sqlMapGenerator targetPackage="com.mengxuegu.mapper"  targetProject=".\src">  <!-- enableSubPackages:是否让schema作为包的后缀 -->  <property name="enableSubPackages" value="false" />  </sqlMapGenerator>  <!-- targetPackage:mapper接口生成的位置 -->  <javaClientGenerator type="XMLMAPPER"  targetPackage="com.mengxuegu.mapper"  targetProject=".\src">  <!-- enableSubPackages:是否让schema作为包的后缀 -->  <property name="enableSubPackages" value="false" />  </javaClientGenerator>  <!-- 指定数据库表 -->  <table tableName="items"></table>  <table tableName="orders"></table>  <table tableName="orderdetail"></table>  <table tableName="user"></table>  <!-- <table schema="" tableName="sys_user"></table>  <table schema="" tableName="sys_role"></table>  <table schema="" tableName="sys_permission"></table>  <table schema="" tableName="sys_user_role"></table>  <table schema="" tableName="sys_role_permission"></table> -->   <!-- 有些表的字段需要指定java类型  <table schema="" tableName="">  <columnOverride column="" javaType="" />  </table> -->  </context> </generatorConfiguration>