Eclipse中使用Mybatis自动生成工具

  1. 插件的安装
    Help–>Eclipse Marketpalce,搜索mybatis,
    选择如下图的插件:Eclipse中使用Mybatis自动生成工具_第1张图片
    一路安装,重启idea
  2. 配置文件的生成
    new–>file–>other,搜索mybatis,选择如下图文件:Eclipse中使用Mybatis自动生成工具_第2张图片
  3. 运行文件,自动生成相应的文件和实体类
    配置文件,我的配置文件如下


<generatorConfiguration>
    <context id="testTables" targetRuntime="MyBatis3">
        <commentGenerator>
            
            <property name="suppressAllComments" value="true" />
        commentGenerator>
        
        
        <jdbcConnection driverClass="com.mysql.jdbc.Driver"
            connectionURL="jdbc:mysql://localhost:3306/xshop" 
            userId="root"
            password="root">
        jdbcConnection> 

        
        <javaTypeResolver>
            <property name="forceBigDecimals" value="false" />
        javaTypeResolver>

        
        <javaModelGenerator targetPackage="com.linchong.pojo"
            targetProject="testMybatis/src">
            
            <property name="enableSubPackages" value="false" />
            
            <property name="trimStrings" value="true" />
        javaModelGenerator>
        
        <sqlMapGenerator targetPackage="cn.linchong.mapper" 
            targetProject="testMybatis/src">
            
            <property name="enableSubPackages" value="false" />
        sqlMapGenerator>
        
        <javaClientGenerator type="XMLMAPPER"
            targetPackage="com.linchong.mapper" 
            targetProject="testMybatis/src">
            
            <property name="enableSubPackages" value="false" />
        javaClientGenerator>
        
        
        <table tableName="tb_shop">table>
    context>
generatorConfiguration>

运行配置文件生成对应的实体类和mapper文件:点击配置文件,右键run as->mybatis…如下图所示:Eclipse中使用Mybatis自动生成工具_第3张图片
期间出现的错误
1.MySql8 Client does not support authentication protocol requested by server; consider upgrading MySQL
解决方法:
USE mysql;
ALTER USER ‘root’@’localhost’ IDENTIFIED WITH mysql_native_password BY ‘password’;
FLUSH PRIVILEGES;

你可能感兴趣的:(工具使用)