eclipse下用maven插件+Mabatis-generator生成mybatis的文件

网上很多关于Mabatis-generator自动生成mabatis所需要的数据库表映射配置以及bean和dao等的用法,大致分为这几种:eclipse插件生成、用jar包生成、用maven插件+Mabatis-generator生成,这里只介绍最后一种用法。

1. 配置Maven pom.xml 文件

在pom.xml增加以下插件:

   <build>
       plugins>
            ...
            <plugin>
                <groupId>org.mybatis.generatorgroupId>
                <artifactId>mybatis-generator-maven-pluginartifactId>
                <version>1.3.2version>
                <configuration>
                    <verbose>trueverbose>
                    <overwrite>trueoverwrite>
                configuration>
            plugin>
            ...
        plugins>
    build>

配置好Maven插件,下面需要配置插件需要mybatis-generator的配置文件

2. 配置mybatis-generator的配置文件

添加配置文件到resource下:
eclipse下用maven插件+Mabatis-generator生成mybatis的文件_第1张图片
generatorConfig.xml的内容:




<generatorConfiguration>
    
    <classPathEntry
        location="E:/maven/mvn_repository/com/oracle/ojdbc14/14/ojdbc14-14.jar" />
    <context id="my" targetRuntime="MyBatis3">
        <commentGenerator>
            <property name="suppressDate" value="false" />
            <property name="suppressAllComments" value="true" />
        commentGenerator>
        
        <jdbcConnection driverClass="oracle.jdbc.driver.OracleDriver"
            connectionURL="jdbc:oracle:thin:@192.168.1.112:1521:orcl" userId="KY"
            password="KY" />
            
        <javaModelGenerator targetPackage="com.dg.bean"
            targetProject="E:/MyWorkspace/ssmdemo/src/main/java">
            <property name="enableSubPackages" value="true" />
            <property name="trimStrings" value="true" />
        javaModelGenerator>
        
        <sqlMapGenerator targetPackage="com.dg.mapping"
            targetProject="E:/MyWorkspace/ssmdemo/src/main/java">
            <property name="enableSubPackages" value="true" />
        sqlMapGenerator>
        
        <javaClientGenerator targetPackage="com.dg.dao"
            targetProject="E:/MyWorkspace/ssmdemo/src/main/java" type="XMLMAPPER">
            <property name="enableSubPackages" value="true" />
        javaClientGenerator>

        
        <table tableName="ORDER_INFO" domainObjectName="OrderInfoBean"
            enableCountByExample="false" enableUpdateByExample="false"
            enableDeleteByExample="false" enableSelectByExample="false"
            selectByExampleQueryId="false">
        table>
    context>
generatorConfiguration>

3. 生成代码

在eclipse 中,选择pom.xml文件,击右键先择Run AS——>Maven Build… ——>在Goals框中输入:mybatis-generator:generate,maven会先下载插件,然后生成代码。
eclipse下用maven插件+Mabatis-generator生成mybatis的文件_第2张图片

看效果:

eclipse下用maven插件+Mabatis-generator生成mybatis的文件_第3张图片

然后,按照我们的习惯将生成的文件名字改掉即可(注意xml文件里的namespace别忘改)。

你可能感兴趣的:(框架)