標籤:c class blog java a http
下面是我看了網上的有一點需要強調:網址 http://ibatis.apache.org/tools/abator
然後全選,然後是==>重啟就好了
eclipse上安裝abator外掛程式
參考:http://www.blogjava.net/beansoft/archive/2008/03/31/189795.html
在eclipse上安裝abator外掛程式
eclipse功能表列 --> help --> Software Updates --> Find And Install...
在彈出的對話方塊中選擇 “Search for new features to install” 然後點擊 “next”
在對話方塊中點擊按鈕 New Remort Site... 在彈出的對話方塊中的URL輸入框中填寫 http://ibatis.apache.org/tools/abator ,Name輸入框就隨便寫些什麼了。
點擊Finish,安裝外掛程式,然後重新啟動eclipse
abatorConfig.xml:
<?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> <!-- TODO: Add Database Connection Information -->
<jdbcConnection driverClass="???"
connectionURL="???"
userId="???"
password="???">
<classPathEntry location="???" />
</jdbcConnection>
<javaModelGenerator targetPackage="???" targetProject="???" />
<sqlMapGenerator targetPackage="???" targetProject="???" />
<daoGenerator type="IBATIS" targetPackage="???" targetProject="???" />
<table schema="???" tableName="???">
<columnOverride column="???" property="???" />
</table>
</abatorContext>
</abatorConfiguration>
1. 填寫driverClass(jdbc驅動,例如oracle的就是oracle.jdbc.driver.OracleDriver)
2. 填寫connectionURL(連接字串,例如oracle的就是jdbc:oracle:thin:@192.168.0.246:1521:test)
3. 填寫classPathEntry的location(jdbc驅動jar包的位置,例如E:/project/ibatistest/WebContent/WEB-INF/lib/ojdbc14.jar)
4. 填寫javaModelGenerator,產生的DTO(java model 類)
targetPackage:目標包的位置,如 com.test.dto
targetProject:目標工程名稱,填寫設定檔所在的eclipse工程名
5. 填寫sqlMapGenerator ,產生的xml sqlmap的相關配置
targetPackage:目標位置,如 com.test.sqlmap
targetProject:目標工程名稱,填寫設定檔所在的eclipse工程名
6. 填寫daoGenerator ,產生的DAO的相關配置
type:產生的dao實現的類型,如果你使用spring的話寫SPRING,否則寫IBATIS
targetPackage:目標位置,如 com.test.dao
targetProject:目標工程名稱,填寫設定檔所在的eclipse工程名
7. 配置相關資料庫的表
schema:資料庫schema,oracle就是填寫資料庫的使用者名稱
tableName:表名