• STS中配置MyBatis代码生成器


    1、STS工具菜单项Help > Eclipse Marketplace...

    2、输入“mybatis”关键字搜索

    3、选择MyBatis Generator 1.3.7进行安装

    4、安装成功后重启ide

    5、为项目创建mybatis代码生成配置文件

    配置如下:

    <?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="E:Mavenhs-MavenRepsitory
    epositorymysqlmysql-connector-java5.1.46mysql-connector-java-5.1.46.jar"/>    
      <context id="MySQL" targetRuntime="MyBatis3">
            <commentGenerator>    
                <property name="suppressDate" value="true"/>    
                <!-- 是否去除自动生成的注释 true:是 : false:否 -->    
                <property name="suppressAllComments" value="true"/>    
            </commentGenerator>   
          <!--数据库链接URL,用户名、密码 -->
        <jdbcConnection driverClass="com.mysql.jdbc.Driver" connectionURL="jdbc:mysql://localhost:3306/test" userId="root" password="root"/>
        <!--是否启用java.math.BigDecimal-->
            <javaTypeResolver>    
                <property name="forceBigDecimals" value="false"/>    
            </javaTypeResolver>    
        <!-- 生成模型的包名和位置-->    
        <javaModelGenerator targetPackage="com.lock.spring.boot.blog.model" targetProject="jpa-in-action/src/main/java">
                <property name="enableSubPackages" value="true" />
                <property name="trimStrings" value="true" />
        </javaModelGenerator>
        <!-- 生成DAO的包名和位置-->    
        <sqlMapGenerator targetPackage="com.lock.spring.boot.blog.mapper" targetProject="jpa-in-action/src/main/java">
                <property name="enableSubPackages" value="true" />
        </sqlMapGenerator>
        <!-- 生成映射文件的包名和位置-->    
        <javaClientGenerator targetPackage="com.lock.spring.boot.blog.mapper" targetProject="jpa-in-action/src/main/java" type="XMLMAPPER">
            <property name="enableSubPackages" value="true" />
        </javaClientGenerator>
        <!-- 要生成的表 tableName是数据库中的表名或视图名 domainObjectName是实体类名-->    
        <table tableName="user" domainObjectName="User" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false">
            <property name="useActualColumnNames" value="true"/>
          <!-- columnOverride column="???" property="???" /-->
        </table>
      </context>
    </generatorConfiguration>

    6、右击配置文件, 选择Run As > Run Mybatis Generator

    参考地址:http://www.mybatis.org/generator/running/runningWithEclipse.html

  • 相关阅读:
    uboot的mtd功能支持
    ARM920T系统总线时序分析
    NorFlash
    编译u-boot命令和u-boot常用命令
    uboot启动linux的过程
    debug(fmt,args...)调试
    APCS
    You've got to find what you love
    debian , ubuntu 截取下拉菜单
    关于bash的shellshock漏洞
  • 原文地址:https://www.cnblogs.com/hans_gis/p/10386528.html
Copyright © 2020-2023  润新知