Mybatis 自動產生代碼,資料庫postgresql

來源:互聯網
上載者:User

標籤:style   blog   http   java   color   使用   os   檔案   

最近做了一個項目,使用Mybatis自動產生代碼,下面做一下總結,被以後參考:

一、提前準備:

1、工具類:mybatis-generator-core-1.3.2.jar

2、postgresql驅動:postgresql-9.2-1003-jdbc4.jar

3、xml檔案

這些我都上傳到了附件上,下載連結:Download

二、XML詳解

咱們的核心設定檔:mybatisGeneratorConfig.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="/Users/liqiu/git/study/web/soft/postgresql-9.2-1003-jdbc4.jar" />        <context id="tts2">                <jdbcConnection driverClass="org.postgresql.Driver"                        connectionURL="jdbc:postgresql://l-***.com:5433/crm"                        userId="menpiao_dev" password="d**904-8dce-**d0-bb1b-79***cc">                </jdbcConnection>        <javaModelGenerator targetPackage="com.qunar.study.entity" targetProject="/Users/liqiu/git/study/web/src/main/java">                        <property name="enableSubPackages" value="false" />                        <property name="trimStrings" value="true" />                </javaModelGenerator>        <sqlMapGenerator targetPackage="mybatis" targetProject="/Users/liqiu/git/study/web/src/main/resources/">                </sqlMapGenerator>        <javaClientGenerator type="XMLMAPPER" targetPackage="com.qunar.study.mapper" targetProject="/Users/liqiu/git/study/web/src/main/java">                        <property name="enableSubPackages" value="false" />                </javaClientGenerator>                          <table schema="public" tableName="users" domainObjectName="Users"></table>        <table schema="public" tableName="region_manager" domainObjectName="RegionManager"></table>        <table schema="public" tableName="region" domainObjectName="Region"></table>        <table schema="public" tableName="merchant" domainObjectName="Merchant"></table>        <table schema="public" tableName="state_machine" domainObjectName="StateMachine"></table>        <table schema="public" tableName="work_log" domainObjectName="WorkLog"></table>        <table schema="public" tableName="contract" domainObjectName="Contract"></table>        <table schema="public" tableName="notice" domainObjectName="Notice"></table>        <table schema="public" tableName="contact_person_info" domainObjectName="ContactPersonInfo"></table>        <table schema="public" tableName="express" domainObjectName="Express"></table>        <table schema="public" tableName="comment" domainObjectName="Comment"></table>        <!--            <table schema="public" tableName="operation" domainObjectName="Operation" enableCountByExample="true" enableUpdateByExample="true" enableDeleteByExample="true" enableSelectByExample="true" selectByExampleQueryId="true" ></table>        -->        </context></generatorConfiguration>

三、執行代碼:

java -jar /Users/liqiu/git/study/web/soft/mybatis-generator-core-1.3.2/lib/mybatis-generator-core-1.3.2.jar -configfile /Users/liqiu/git/study/web/soft/mybatisGeneratorConfig.xml -overwrite

這時就可以看見產生的程式碼了

├── src│   ├── main│   │   ├── java│   │   │   ├── com│   │   │   │   └── qunar│   │   │   │       └── study│   │   │   │           ├── entity│   │   │   │           │   ├── Comment.java│   │   │   │           │   ├── CommentExample.java│   │   │   │           │   ├── ContactPersonInfo.java│   │   │   │           │   ├── ContactPersonInfoExample.java│   │   │   │           │   ├── Contract.java│   │   │   │           │   ├── ContractExample.java│   │   │   │           │   ├── Express.java│   │   │   │           │   ├── ExpressExample.java│   │   │   │           │   ├── Merchant.java│   │   │   │           │   ├── MerchantExample.java│   │   │   │           │   ├── Notice.java│   │   │   │           │   ├── NoticeExample.java│   │   │   │           │   ├── Operation.java│   │   │   │           │   ├── OperationExample.java│   │   │   │           │   ├── Region.java│   │   │   │           │   ├── RegionExample.java│   │   │   │           │   ├── RegionManager.java│   │   │   │           │   ├── RegionManagerExample.java│   │   │   │           │   ├── StateMachine.java│   │   │   │           │   ├── StateMachineExample.java│   │   │   │           │   ├── Users.java│   │   │   │           │   ├── UsersExample.java│   │   │   │           │   ├── WorkLog.java│   │   │   │           │   └── WorkLogExample.java│   │   │   │           └── mapper│   │   │   │               ├── CommentMapper.java│   │   │   │               ├── ContactPersonInfoMapper.java│   │   │   │               ├── ContractMapper.java│   │   │   │               ├── ExpressMapper.java│   │   │   │               ├── MerchantMapper.java│   │   │   │               ├── NoticeMapper.java│   │   │   │               ├── OperationMapper.java│   │   │   │               ├── RegionManagerMapper.java│   │   │   │               ├── RegionMapper.java│   │   │   │               ├── StateMachineMapper.java│   │   │   │               ├── UsersMapper.java│   │   │   │               └── WorkLogMapper.java│   │   │   └── test│   │   │       └── qunar│   │   │           └── com│   │   │               └── web│   │   │                   └── App.java│   │   └── resources│   │       └── mybatis│   │           ├── CommentMapper.xml│   │           ├── ContactPersonInfoMapper.xml│   │           ├── ContractMapper.xml│   │           ├── ExpressMapper.xml│   │           ├── MerchantMapper.xml│   │           ├── NoticeMapper.xml│   │           ├── OperationMapper.xml│   │           ├── RegionManagerMapper.xml│   │           ├── RegionMapper.xml│   │           ├── StateMachineMapper.xml│   │           ├── UsersMapper.xml│   │           └── WorkLogMapper.xml

註:這裡的核心是路徑,最好都是用絕對路徑

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.