首页 > 其他 > 详细

STS中配置MyBatis代码生成器

时间:2019-02-16 00:50:12      阅读:630      评论:0      收藏:0      [点我收藏+]

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:\Maven\hs-MavenRepsitory\repository\mysql\mysql-connector-java\5.1.46\mysql-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

STS中配置MyBatis代码生成器

原文:https://www.cnblogs.com/hans_gis/p/10386528.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!