* 插件的安装
Help–>Eclipse Marketpalce,搜索mybatis,
选择如下图的插件:
一路安装,重启idea
* 配置文件的生成
new–>file–>other,搜索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> <context id="testTables" targetRuntime="MyBatis3"> <
commentGenerator> <!-- 是否去除自动生成的注释 true:是 : false:否 --> <property name=
"suppressAllComments" value="true" /> </commentGenerator>
<!--数据库连接的信息:驱动类、连接地址、用户名、密码 --> <!-- <jdbcConnection
driverClass="com.mysql.jdbc.Driver"
connectionURL="jdbc:mysql://localhost:3306/xshop?useUnicode=true&characterEncoding=utf8"
userId="root" password="root"> </jdbcConnection>--> <jdbcConnection driverClass=
"com.mysql.jdbc.Driver" connectionURL="jdbc:mysql://localhost:3306/xshop" userId
="root" password="root"> </jdbcConnection> <!-- 默认false,把JDBC DECIMAL 和 NUMERIC
类型解析为 Integer,为 true时把JDBC DECIMAL 和 NUMERIC 类型解析为java.math.BigDecimal --> <
javaTypeResolver> <property name="forceBigDecimals" value="false" /> </
javaTypeResolver> <!-- targetProject:生成PO类的位置 --> <javaModelGenerator
targetPackage="com.linchong.pojo" targetProject="testMybatis/src"> <!--
enableSubPackages:是否让schema作为包的后缀 --> <property name="enableSubPackages" value=
"false" /> <!-- 从数据库返回的值被清理前后的空格 --> <property name="trimStrings" value="true"
/> </javaModelGenerator> <!-- targetProject:mapper映射文件生成的位置 --> <sqlMapGenerator
targetPackage="cn.linchong.mapper" targetProject="testMybatis/src"> <!--
enableSubPackages:是否让schema作为包的后缀 --> <property name="enableSubPackages" value=
"false" /> </sqlMapGenerator> <!-- targetPackage:mapper接口生成的位置 --> <
javaClientGenerator type="XMLMAPPER" targetPackage="com.linchong.mapper"
targetProject="testMybatis/src"> <!-- enableSubPackages:是否让schema作为包的后缀 --> <
property name="enableSubPackages" value="false" /> </javaClientGenerator> <!--
指定数据库表 --> <!--<table tableName="items"></table> --> <table tableName="tb_shop">
</table> </context> </generatorConfiguration>
运行配置文件生成对应的实体类和mapper文件:点击配置文件,右键run as->mybatis…如下图所示:
期间出现的错误:
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;

友情链接
KaDraw流程图
API参考文档
OK工具箱
云服务器优惠
阿里云优惠券
腾讯云优惠券
华为云优惠券
站点信息
问题反馈
邮箱:ixiaoyang8@qq.com
QQ群:637538335
关注微信