您好,登錄后才能下訂單哦!
前言
在使用maven配置Mybatis generator插件時(shí)報(bào)以下錯誤,generator插件一直無法使用,查詢資料說和eclipse版本有關(guān)系。
The POM for org.eclipse.m2e:lifecycle-mapping:jar:1.0.0 is missing, no dependency information available
無奈之下選擇安裝eclipse的插件。
安裝步驟(基于MyEclipse2018)
點(diǎn)擊help-->install from catalog...
在搜索框輸入MyBatis Generator出現(xiàn)點(diǎn)擊install-->Finish.如下圖所示
安裝完成后在項(xiàng)目中右擊新建MyBatis Generator configuration file.如下圖所示
點(diǎn)擊next 選擇文件生成的路徑以及文件名,如下圖所示
點(diǎn)擊Finfish。具體配置可參考以下配置進(jìn)行修改
<?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"> <!-- 數(shù)據(jù)庫鏈接URL,用戶名、密碼 --> <jdbcConnection connectionURL="jdbc:mysql://localhost:3306/miaosha?characterEncoding=utf8" driverClass="com.mysql.jdbc.Driver" password="jma3" userId="root" /> <!-- 生成model模型,對應(yīng)的包 --> <javaModelGenerator targetPackage="com.jian.miaosha.dataobject" targetProject="miaosha/src/main/java" /> <!-- 對應(yīng)的xml mapper文件 --> <sqlMapGenerator targetPackage="mapping" targetProject="miaosha/src/main/resources" /> <!-- 對應(yīng)的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>
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。