Eclipse 下 Mybatis 自动生成实体类,Mapping 的两种方法

  1. 在 Eclipse Marketplace 下载 “MyBatis Generator”,最新版本是 1.3.5。

  2. 在项目中新建一个"My Batis Generator Configuration File"。
    "New->Other->MyBatis-> MyBatis Generator Configuration File"


    image.png
  3. 以下便是 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>
  <context id="context1">
    <jdbcConnection connectionURL="???" driverClass="???" password="???" userId="???" />
    <javaModelGenerator targetPackage="???" targetProject="???" />
    <sqlMapGenerator targetPackage="???" targetProject="???" />
    <javaClientGenerator targetPackage="???" targetProject="???" type="XMLMAPPER" />
    <table schema="???" tableName="???">
      <columnOverride column="???" property="???" />
    </table>
  </context>
</generatorConfiguration>

4.这个是我修改配置后的内容

<?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:数据库的JDBC驱动的jar包地址--> 
<classPathEntry 
      location="C:/Users/h144198/Downloads/postgresql-42.1.1.jar" />
  <context id="context1">
  <property name="mergeable" value="true"></property>
   <commentGenerator> 
    <!-- 是否去除自动生成的注释 true:是 : false:否 --> 
    <property name="suppressDate" value="true"/>
    </commentGenerator> 
   <!--数据库连接的信息:驱动类、连接地址、用户名、密码 --> 
<jdbcConnection driverClass="org.postgresql.Driver"
            connectionURL="jdbc:postgresql://localhost:5432/postgres?currentSchema=public"
            userId="postgres" 
            password="AAaa1111">
</jdbcConnection>
         
<javaModelGenerator targetPackage="com.honey.windy.entity" targetProject="mybatisDemo\src\main\java">
            <!-- 如果true,MBG会根据catalog和schema来生成子包,如果false就会直接用targetPackage属性,默认为false -->
            <property name="enableSubPackages" value="false"></property>
</javaModelGenerator>

<sqlMapGenerator targetPackage="mybatis" targetProject="mybatisDemo\src\main\resources" >
            <!-- 如果true,MBG会根据catalog和schema来生成子包,如果false就会直接用targetPackage属性,默认为false -->
            <property name="enableSubPackages" value="false"></property>
</sqlMapGenerator>
        
<!-- 如果不配置该元素,就不会生成  DAO 接口 -->
<javaClientGenerator targetPackage="com.honey.home.message.dao" type="XMLMAPPER"  targetProject="mybatisDemo\src\main\java">
            <!-- 如果true,MBG会根据catalog和schema来生成子包,如果false就会直接用targetPackage属性,默认为false -->
            <property name="enableSubPackages" value="false"></property>
</javaClientGenerator>
    
    
    <table schema="public"  tableName="tbl_customer" domainObjectName="Customer" 
    enableCountByExample="false"
    enableUpdateByExample="false"
    enableDeleteByExample="false"
    enableSelectByExample="false" 
    selectByExampleQueryId="false"  >
       
    </table>
  </context>
  
</generatorConfiguration>
  1. 配置文件中大部分有了注解,提一下注意几点:
  1. targetproject 属性问题,这个不能从字面意义上去理解,(或许我这个Java的初学者理解有误),这里的设置并不是project而是一个真正的路径。
  2. 覆盖问题:使用以上的配置有个问题就是: MyBatis Generator "自觉"的问我们加入了很多注释:
public class Customer {

    /**
     * This field was generated by MyBatis Generator. This field corresponds to the database column public.tbl_customer.id
     * @mbg.generated
     */
    private BigDecimal id;
    /**
     * This field was generated by MyBatis Generator. This field corresponds to the database column public.tbl_customer.Name
     * @mbg.generated
     */
    private String name;

    /**
     * This method was generated by MyBatis Generator. This method returns the value of the database column public.tbl_customer.id
     * @return  the value of public.tbl_customer.id
     * @mbg.generated
     */
    public BigDecimal getId() {
        return id;
    }

    /**
     * This method was generated by MyBatis Generator. This method sets the value of the database column public.tbl_customer.id
     * @param id  the value for public.tbl_customer.id
     * @mbg.generated
     */
    public void setId(BigDecimal id) {
        this.id = id;
    }

    /**
     * This method was generated by MyBatis Generator. This method returns the value of the database column public.tbl_customer.Name
     * @return  the value of public.tbl_customer.Name
     * @mbg.generated
     */
    public String getName() {
        return name;
    }

    /**
     * This method was generated by MyBatis Generator. This method sets the value of the database column public.tbl_customer.Name
     * @param name  the value for public.tbl_customer.Name
     * @mbg.generated
     */
    public void setName(String name) {
        this.name = name;
    }
}

我们并不需要啊,好吧我们可以设置"suppressAllComments" 这个属性,

 <context id="context1">
   
   <commentGenerator> 
    <!-- 是否去除自动生成的注释 true:是 : false:否 --> 
    <property name="suppressDate" value="true"/>
    <property name="suppressAllComments" value="true"/>
    </commentGenerator> 

看似结果不错,这个世界也清爽了很多。但是,如果我们对这个generatorConfig.xml生成多次的话,所有生成的实体类,mapping文件都会被相同的内容,
我暂时的解决办事是只能让他继续生成注释,不过也有其他大神的解决方案:
(https://my.oschina.net/u/140938/blog/220006)
(https://my.oschina.net/u/137785/blog/736372)
我还未尝试。

  1. 其他生成方法:使用Maven插件
<plugins>
            <plugin>
                <groupId>org.mybatis.generator</groupId>
                <artifactId>mybatis-generator-maven-plugin</artifactId>
                <version>1.3.5</version>
                <configuration>
                    <verbose>true</verbose>
                    <overwrite>true</overwrite>
                </configuration>
            </plugin>
        </plugins>

然后设置一下 Debug/Run Config

image.png

这种做法与上一种大同小异,不过似乎没有追加文本的问题,推荐使用。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,186评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,858评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,620评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,888评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,009评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,149评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,204评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,956评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,385评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,698评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,863评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,544评论 4 335
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,185评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,899评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,141评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,684评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,750评论 2 351

推荐阅读更多精彩内容