三叶草 发表于 2021-9-18 19:09:17

MyEclipse2018中安装Mybatis generator插件的实现步骤

这篇文章主要介绍了MyEclipse2018中安装Mybatis generator插件的实现步骤,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
前言
在使用maven配置mybatis generator插件时报以下错误,generator插件一直无法使用,查询资料说和eclipse版本有关系。

the pom for org.eclipse.m2e:lifecycle-mapping:jar:1.0.0 is missing, no dependency information available
无奈之下选择安装eclipse的插件。
安装步骤(基于myeclipse2018)
点击help-->install from catalog...
在搜索框输入mybatis generator出现点击install-->finish.如下图所示

安装完成后在项目中右击新建mybatis generator configuration file.如下图所示

点击next 选择文件生成的路径以及文件名,如下图所示

点击finfish。具体配置可参考以下配置进行修改


<?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="context1">
<!-- 数据库链接url,用户名、密码 -->
<jdbcconnection connectionurl="jdbc:mysql://localhost:3306/miaosha?characterencoding=utf8" driverclass="com.mysql.jdbc.driver" password="jma3" userid="root" />
<!-- 生成model模型,对应的包 -->
<javamodelgenerator targetpackage="com.jian.miaosha.dataobject" targetproject="miaosha/src/main/java" />
<!-- 对应的xml mapper文件 -->
<sqlmapgenerator targetpackage="mapping" targetproject="miaosha/src/main/resources" />
<!-- 对应的dao接口 -->
<javaclientgenerator targetpackage="com.jian.miaosha.dao" targetproject="miaosha/src/main/java" type="xmlmapper" />

<!-- 要生成的表 -->
<table schema="" tablename="customer_password">

</table>
<table schema="" tablename="customer">

</table>
</context></generatorconfiguration>
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持CodeAE代码之家。
原文链接:https://segmentfault.com/a/1190000018145466

http://www.zzvips.com/article/176537.html
页: [1]
查看完整版本: MyEclipse2018中安装Mybatis generator插件的实现步骤