目前從實際應用來看,ORM的老大自然是Hibernate,可是iBatis因為相對比 較直觀、學習曲線相對較低,因而也贏得了不少用戶的青睐。
本文主要介紹作為iBatis輔助工具的iBator的使用方法。
iBator是一個iBatis相關代碼的自動生成工具。
1、安裝iBator的插件
在Eclipse中,使用添加站點的方法,輸入網址 http://ibatis.apache.org/tools/ibator,進行iBator的安裝。
2、建議不要直接在使用iBatis的項目裡直接使用iBator,推薦另外單獨建立 一個項目來生成。比如,建立一個項目叫:IbatorPrj
3、右鍵點擊IbatorPrj這個項目,如果剛才的插件安裝正確的話,就會看到 一個“Add iBATOR to the build path”的選項,點擊一下。
4、創建iBator的配置文件。下面是我的例子,大家在實際使用的過程中,需 要根據自己的情況進行相應的修改。
主要就是數據庫JDBC庫的路徑、數據庫驅動的類名、項目的名稱、包名等。
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE ibatorConfiguration
PUBLIC "-//Apache Software Foundation//DTD Apache iBATIS Ibator Configuration 1.0//EN"
"http://ibatis.apache.org/dtd/ibator-config_1_0.dtd">
<ibatorConfiguration>
<classPathEntry location="c:\javaLibs\MySql\mysql-connector-java- 5.0.6-bin.jar" />
<ibatorContext id="SampleiBator" targetRuntime="Ibatis2Java5">
<jdbcConnection driverClass="com.mysql.jdbc.Driver"
connectionURL="jdbc:mysql://localhost/sample" userId="root" password="admin">
</jdbcConnection>
<javaTypeResolver>
<property name="forceBigDecimals" value="false" />
</javaTypeResolver>
<javaModelGenerator targetPackage="com.sample"
targetProject="IbatorPrj\src">
<property name="enableSubPackages" value="true" />
<property name="trimStrings" value="true" />
</javaModelGenerator>
<sqlMapGenerator targetPackage="com.sample.xml"
targetProject="IbatorPrj\src">
<property name="enableSubPackages" value="true" />
</sqlMapGenerator>
<daoGenerator type="GENERIC-CI" targetPackage="com.sample.dao"
targetProject="IbatorPrj\src">
<property name="enableSubPackages" value="true" />
</daoGenerator>
<table schema="sample" tableName="tab1" domainObjectName="JavaBean1">
<property name="useActualColumnNames" value="false" />
<generatedKey column="ID" sqlStatement="MySql" identity="true" />
</table>
</ibatorContext>
</ibatorConfiguration>
5、配置文件生成完畢後,右鍵點擊這個文件,選擇“Generate iBatis Artifact”,然後你就在配置的文件夾下找到自動生成的文件了。