欢迎来到代码驿站!

JAVA代码

当前位置:首页 > 软件编程 > JAVA代码

mybatis generator 配置 反向生成Entity简单增删改查(推荐)

时间:2021-02-08 09:35:47|栏目:JAVA代码|点击:

mybatis generator 配置 反向生成Entity简单增删改查实例代码如下所示:

<?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>
 <!--数据库驱动jar -->
 <classPathEntry location="D:\.m2\repository\mysql\mysql-connector-java\5.1.38\mysql-connector-java-5.1.38.jar" />
 <context id="DB2Tables" targetRuntime="MyBatis3">
  <!--去除注释 -->
  <commentGenerator>
   <property name="suppressAllComments" value="true" />
  </commentGenerator>
  <!--数据库连接 -->
  <jdbcConnection driverClass="com.mysql.jdbc.Driver" connectionURL="jdbc:mysql://192.168.5.159:3306/数据库名称"
   userId="用户名" password="你懂得">
  </jdbcConnection>
  <!--默认false Java type resolver will always use java.math.BigDecimal if the database column is of type DECIMAL or NUMERIC. -->
  <javaTypeResolver>
   <property name="forceBigDecimals" value="false" />
  </javaTypeResolver>
  <!--生成实体类 指定包名 以及生成的地址 (可以自定义地址,但是路径不存在不会自动创建 使用Maven生成在target目录下,会自动创建) -->
  <javaModelGenerator targetPackage="com.heaboy.包名.base.entity" targetProject="项目名">
   <property name="enableSubPackages" value="false" />
   <property name="trimStrings" value="true" />
  </javaModelGenerator>
  <!--生成SQLMAP文件 -->
  <sqlMapGenerator targetPackage="com.heaboy.包名.mybatis" targetProject="项目名">
   <property name="enableSubPackages" value="false" />
  </sqlMapGenerator>
  <!--生成Dao文件 可以配置 type="XMLMAPPER"生成xml的dao实现 context id="DB2Tables" 修改targetRuntime="MyBatis3" -->
  <javaClientGenerator type="XMLMAPPER" targetPackage="com.heaboy.包名.base.dao" targetProject="项目名">
   <property name="enableSubPackages" value="false" />
  </javaClientGenerator>
  <!--对应数据库表 mysql可以加入主键自增 字段命名 忽略某字段等 -->
  <table tableName="表名" domainObjectName="生成的实体名" enableCountByExample="false"
   enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"
   delimitIdentifiers="true">
   <property name="useActualColumnNames" value="true" />
  </table>
  <table tableName="表名2" domainObjectName="生成的实体名2" enableCountByExample="false"
   enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false">
   <property name="useActualColumnNames" value="true" />
  </table>
 </context>
</generatorConfiguration>

上一篇:java 中动态代理机制的实例讲解

栏    目:JAVA代码

下一篇:浅析java修饰符访问权限(动力节点Java学院整理)

本文标题:mybatis generator 配置 反向生成Entity简单增删改查(推荐)

本文地址:http://www.codeinn.net/misctech/59476.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有