<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    閑人野居
    好好學習,天天向上
    posts - 57,  comments - 137,  trackbacks - 0
    ??? 用了很久hibernate ,突然想換個別的orm 工具,當然在orm領域中,hibernate是老大??戳艘幌耰batis,發現如果對于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 布衣郎 閱讀(2296) 評論(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

    搜索

    •  

    積分與排名

    • 積分 - 358025
    • 排名 - 156

    最新評論

    閱讀排行榜

    評論排行榜

    主站蜘蛛池模板: 亚洲欧美日韩中文无线码 | baoyu116.永久免费视频| 成人最新午夜免费视频| 久久亚洲精品中文字幕| 久久香蕉国产线看免费| 亚洲成年轻人电影网站www| 国产精品99精品久久免费| 亚洲AV成人精品网站在线播放| 国内少妇偷人精品视频免费| 精品国产亚洲一区二区三区| 久久久久久久久久国产精品免费 | 亚洲AV无码精品色午夜果冻不卡| a级精品九九九大片免费看| 亚洲精品午夜无码专区| 高清一区二区三区免费视频| 内射少妇36P亚洲区| 91制片厂制作传媒免费版樱花 | 一本色道久久综合亚洲精品蜜桃冫| 国产免费AV片在线播放唯爱网| 亚洲AV无码一区二区三区在线| 久久精品无码一区二区三区免费| 亚洲精品美女网站| 免费少妇a级毛片| 国产JIZZ中国JIZZ免费看| 精品亚洲综合久久中文字幕| 91香蕉国产线观看免费全集| 亚洲免费福利视频| 啊v在线免费观看| 免费人成激情视频在线观看冫| 亚洲精品国产福利在线观看| 嫩草视频在线免费观看| 美女被免费网站在线视频免费| 亚洲综合伊人久久综合| 精品一区二区三区免费毛片爱| 亚洲熟妇无码AV| 亚洲精品自产拍在线观看| 四虎永久在线精品免费观看视频| 亚洲а∨精品天堂在线| 亚洲欧洲成人精品香蕉网| 波多野结衣中文字幕免费视频| 狠狠综合亚洲综合亚洲色|