溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

ibatis插件的安裝方法

發(fā)布時(shí)間:2021-07-14 16:17:38 來源:億速云 閱讀:230 作者:chen 欄目:編程語言

這篇文章主要介紹“ibatis插件的安裝方法”,在日常操作中,相信很多人在ibatis插件的安裝方法問題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”ibatis插件的安裝方法”的疑惑有所幫助!接下來,請(qǐng)跟著小編一起來學(xué)習(xí)吧!

安裝ibatis插件的方法其實(shí)很簡(jiǎn)單,請(qǐng)按照如下的步驟安裝ibatis插件。

.安裝ibatis插件

http://ibatis.apache.org/abator.html下載Eclipse Plugin。插件一共有2種安裝方式.

1.遠(yuǎn)程安裝ibatis插件.

 eclipse->HelpSoftware UpdatesFind and Install-Search for new features to install-

 New Remote Site(name:Abator for Eclipse Update Site ,URL:http://ibatis.apache.org/tools/abator)

 ->OK-Abator for Eclipse Update Site-OK

2.手動(dòng)安裝ibatis插件.

 http://ibatis.apache.org/abator.html下載AbatorForEclipse1.1.0.zip,下載后在eclipse中進(jìn)行ibatis插件安裝操作。

 eclipse->HelpSoftware UpdatesFind and Install-Search for new features to install(press "Next" )-

 New Local Site->選種剛才下載的文件-OK

.建立一個(gè)項(xiàng)目

 新建一個(gè)Eclipse項(xiàng)目,輸入名字,然后選擇文件>新建>ABator for iBatis configuration File,選擇Location,并且鍵入File NameabatorCsonfig.xml

 

點(diǎn)擊“完成”,Eclipse會(huì)在程序根目錄下建立abatorCsonfig.xml文件,打開編輯它,內(nèi)容如下:

 

?xml version="1.0" encoding="UTF-8" ?

!DOCTYPE abatorConfiguration PUBLIC "-//Apache Software Foundation//DTD Abator for iBATIS Configuration 1.0//EN" "http://ibatis.apache.org/dtd/abator-config_1_0.dtd"

abatorConfiguration

  <abatorContext

    <jdbcConnection driverClass="驅(qū)動(dòng)" connectionURL="數(shù)據(jù)庫URL" userId="用戶名" password="密碼"

      <classPathEntry location="數(shù)據(jù)庫驅(qū)動(dòng)jar" /

    </jdbcConnection

    <javaModelGenerator targetPackage="model層包路徑" targetProject="src路徑" /

    <sqlMapGenerator targetPackage="map層包路徑" targetProject="src路徑" /

    <daoGenerator targetPackage="dao層包路徑" targetProject="src路徑" type="IBATIS" /

    <table schema="表名" tableName="表名" catalog="數(shù)據(jù)庫名">一定要寫上,不然會(huì)報(bào)錯(cuò)的。

    

    </table

  </abatorContext

/abatorConfiguration

 

abatorCsonfig.xml上點(diǎn)擊鼠標(biāo)右鍵,選擇Generate iBATIS Artifact,在src目錄下會(huì)生成modelmap、dao三個(gè)目錄,文件也建立好了。

 javaModelGenerator:我們常說的ValueObject

 sqlMapGenerator:XML文件

daoGenerator:放置接口和DAO的代碼

這樣一來,ibatis插件就被順利的安裝上了。

到此,關(guān)于“ibatis插件的安裝方法”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注億速云網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI