閑人野居
          好好學習,天天向上
          posts - 57,  comments - 137,  trackbacks - 0
          ??? 用了很久hibernate ,突然想換個別的orm 工具,當然在orm領域中,hibernate是老大。看了一下ibatis,發現如果對于crud操作不是很多的系統來說,是個不錯的選擇,尤其是適合那些對sql和性能熱衷的開發者。綜合來說ibatis不能算orm工具,只能算個半成品。不過比起直接用jdbc寫,那還是方便多了。主要的好處是分離了sql和代碼,如果你想追求性能,那么sql是你很好的利器,當然ibatis的緩存也不錯。比起hibernate,ibatis就簡單多了,估計也就3天能夠基本掌握了,這大大減少了學習成本。
          ??? 說了那么多廢話,下面開始正題,通過一個簡單的實例開始ibatis之旅,文章大部分參考網上的ibatis 開發指南一文。
          ??? 主要的jar:ibatis 2.3.0,spring 2.0.1,log4j 1.2.9,commons-logging 1.0.4,hsqldb 1.8.0
          ??? ibatis實例配置:
          ?
          <sqlMapConfig>
          <!-- 事務采用spring 管理 -->
          ? <!--
          ? <transactionManager type="JDBC" commitRequired="false">
          ??? <dataSource type="SIMPLE">
          ????? <property name="JDBC.Driver" value="org.hsqldb.jdbcDriver"/>
          ????? <property name="JDBC.ConnectionURL" value="jdbc:hsqldb:hsql://localhost/xdb"/>
          ????? <property name="JDBC.Username" value="sa"/>
          ????? <property name="JDBC.Password" value=""/>
          ??? </dataSource>
          ? </transactionManager>
          -->
          ? <sqlMap resource="org/esoft/bo/xml/Account.xml"/>
          </sqlMapConfig>?? ?

          創建POJO對象:

          ?
          package com.esoft.bo;

          public class Account {

          ??? private String emailAddress;

          ??? private String firstName;

          ??? private int id;

          ??? private String lastName;

          ??? public String getEmailAddress() {
          ??????? return emailAddress;
          ??? }

          ??? public String getFirstName() {
          ??????? return firstName;
          ??? }

          ??? public int getId() {
          ??????? return id;
          ??? }

          ??? public String getLastName() {
          ??????? return lastName;
          ??? }

          ??? public void setEmailAddress(String emailAddress) {
          ??????? this.emailAddress = emailAddress;
          ??? }

          ??? public void setFirstName(String firstName) {
          ??????? this.firstName = firstName;
          ??? }

          ??? public void setId(int id) {
          ??????? this.id = id;
          ??? }

          ??? public void setLastName(String lastName) {
          ??????? this.lastName = lastName;
          ??? }

          }?? ?

          映射文件,感覺比較的麻煩。以后有機會的話一定自動生成此文件,尤其現在jpa當道。
          ?
          <?xml version="1.0" encoding="UTF-8" ?>

          <!DOCTYPE sqlMap???? ?
          ??? PUBLIC "-//ibatis.apache.org//DTD SQL Map 2.0//EN"???? ?
          ??? "http://ibatis.apache.org/dtd/sql-map-2.dtd">

          <sqlMap namespace="Account">
          ?? ?
          ?? ?<!-- Use type aliases to avoid typing the full classname every time. -->
          ?? ?<typeAlias alias="Account" type="com.esoft.bo.Account"/>
          ?? ?
          ?? ?<!-- Result maps describe the mapping between the columns returned
          ?? ?from a query, and the class properties.? A result map isn't
          ?? ?necessary if the columns (or aliases) match to the properties
          ?? ?exactly. -->
          ?? ?<resultMap id="AccountResult" class="Account">
          ?? ??? ?<result property="id" column="ACC_ID"/>
          ?? ??? ?<result property="firstName" column="ACC_FIRST_NAME"/>
          ?? ??? ?<result property="lastName" column="ACC_LAST_NAME"/>
          ?? ??? ?<result property="emailAddress" column="ACC_EMAIL"/>
          ?? ?</resultMap>
          ?? ?
          ?? ?<!-- Select with no parameters using the result map for Account class. -->
          ?? ?<select id="selectAllAccounts" resultMap="AccountResult">
          ?? ??? ?select * from ACCOUNT
          ?? ??? ?</select>
          ?? ?
          ?? ?<select id="selectByName" resultMap="AccountResult" parameterClass="String">
          ?? ??? ?select * from Account where ACC_FIRST_NAME like #name#
          ?? ?</select>
          ?? ?
          ?? ?<!-- A simpler select example without the result map.? Note the
          ?? ?aliases to match the properties of the target result class. -->
          ?? ?<select id="selectAccountById" parameterClass="int" resultClass="Account">
          ?? ??? ?select ACC_ID as id, ACC_FIRST_NAME as firstName, ACC_LAST_NAME as lastName,
          ?? ??? ?ACC_EMAIL as emailAddress from ACCOUNT where ACC_ID = #id# </select>
          ?? ?
          ?? ?<!-- Insert example, using the Account parameter class -->
          ?? ?<insert id="insertAccount" parameterClass="Account"> insert into ACCOUNT ( ACC_ID,
          ?? ??? ?ACC_FIRST_NAME, ACC_LAST_NAME, ACC_EMAIL) values ( #id#, #firstName#,
          ?? ??? ?#lastName#, #emailAddress# ) </insert>
          ?? ?
          ?? ?<!-- Update example, using the Account parameter class -->
          ?? ?<update id="updateAccount" parameterClass="Account"> update ACCOUNT set
          ?? ??? ?ACC_FIRST_NAME = #firstName#, ACC_LAST_NAME = #lastName#, ACC_EMAIL =
          ?? ??? ?#emailAddress# where ACC_ID = #id# </update>
          ?? ?
          ?? ?<!-- Delete example, using an integer as the parameter class -->
          ?? ?<delete id="deleteAccountById" parameterClass="int"> delete from ACCOUNT where
          ?? ??? ?ACC_ID = #id# </delete>
          ?? ?
          ?? ?<delete id="clearAccount"> delete from ACCOUNT </delete>
          ?? ?
          </sqlMap>?? ?

          spring 配置:
          ?
          ...
          <bean id="dataSource"
          ?? ??? ?class="org.springframework.jdbc.datasource.DriverManagerDataSource">
          ?? ??? ?<property name="driverClassName">
          ?? ??? ??? ?<value>${jdbc.driverClassName}</value>
          ?? ??? ?</property>
          ?? ??? ?<property name="url">
          ?? ??? ??? ?<value>${jdbc.url}</value>
          ?? ??? ?</property>
          ?? ??? ?<property name="username">
          ?? ??? ??? ?<value>${jdbc.username}</value>
          ?? ??? ?</property>
          ?? ??? ?<property name="password">
          ?? ??? ??? ?<value>${jdbc.password}</value>
          ?? ??? ?</property>
          ?? ?</bean>
          ???????? <bean id="transactionManager"
          ?? ??? ?class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
          ?? ??? ?<property name="dataSource" ref="dataSource"/>
          ?? ? </bean>
          ?? ?
          ?????? <bean id="sqlMapClient"
          ?? ??? ?class="org.springframework.orm.ibatis.SqlMapClientFactoryBean">
          ?? ??? ?<property name="dataSource" ref="dataSource"/>
          ?? ??? ?<property name="configLocation">
          ?? ??? ??? ?<value>SqlMapConfig.xml</value>
          ?? ??? ?</property>
          ????? </bean>
          ????? <bean id="accountDao" class="org.esoft.dao.AccountDaoImpl">
          ???????????? <property name="sqlMapClient" ref="sqlMapClient"/>
          ????? </bean>?? ?? ?
          ?? ?

          主要的代碼:
          public class AccountDaoImpl
          ??????? extends SqlMapClientDaoSupport {
          ??? public PK save(Account obj) {
          ??????? return (PK) getSqlMapClientTemplate().insert("insertAccount", obj);
          ??? }
          ??? public void update(Accountobj) {
          ??????? getSqlMapClientTemplate().update("updateAccount", obj);
          ??? }
          ???? public void delete(Account obj) {
          ??????? getSqlMapClientTemplate().delete(
          ??????????????? "deleteAccountById",
          ??????????????? obj.getPk());
          ??? }
          ??? public Account get(PK primaryKey) {
          ??????? return (Account) getSqlMapClientTemplate().queryForObject(
          ??????????????? "selectAccountById",
          ??????????????? primaryKey);
          ??? }
          }


          posted on 2007-01-10 20:27 布衣郎 閱讀(2288) 評論(1)  編輯  收藏 所屬分類: orm

          FeedBack:
          # re: ibatis 開始之旅
          2007-01-14 22:57 | JooRoo
          好文!  回復  更多評論
            

          只有注冊用戶登錄后才能發表評論。


          網站導航:
           

          <2007年1月>
          31123456
          78910111213
          14151617181920
          21222324252627
          28293031123
          45678910

          常用鏈接

          留言簿(12)

          隨筆分類(59)

          隨筆檔案(57)

          blog

          java

          uml

          搜索

          •  

          積分與排名

          • 積分 - 357339
          • 排名 - 155

          最新評論

          閱讀排行榜

          評論排行榜

          主站蜘蛛池模板: 定安县| 杭州市| 洛浦县| 梅河口市| 大荔县| 韶山市| 十堰市| 拜泉县| 玉环县| 辽阳县| 遵义市| 济阳县| 延长县| 马鞍山市| 玉树县| 安福县| 黔东| 福清市| 大姚县| 健康| 武隆县| 井陉县| 商河县| 商城县| 罗平县| 涞源县| 建湖县| 繁昌县| 彭泽县| 栖霞市| 永丰县| 大冶市| 丹江口市| 东平县| 平江县| 扎鲁特旗| 武川县| 罗甸县| 监利县| 浮山县| 嘉峪关市|