首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

ibatis学习之一二三 ibatis与spring的调整

2013-06-26 
ibatis学习之一二三 ibatis与spring的整合http://www.blogjava.net/freeman1984/archive/2007/12/07/16611

ibatis学习之一二三 ibatis与spring的整合
http://www.blogjava.net/freeman1984/archive/2007/12/07/166112.html 
介绍
iBATIS是以SQL为中心的持久化层框架。能支持懒加载、关联查询、继承等特性。

iBATIS不同于一般的OR映射框架(eg:hibernate)。OR映射框架,将数据库表、字段等映射到类、属性,那是一种元数据(meta-data)映射。iBATIS则是将SQL查询的参数和结果集映射到类。因此可以说,iBATIS做的是SQL Mapping的工作。它把SQL语句看成输入以及输出,结果集就是输出,而where后面的条件参数则是输入。iBATIS能将输入的普通POJO对象、Map、XML等映射到SQL的条件参数上,同时也可以将查询结果映射到普通POJO对象(集合)、Map、XML等上面。

iBATIS使用xml文件来映射这些输入以及输出。能大大减少数据库存储部分的代码量,而且可以非常方便的利用SQL中的一些小技巧。

简单示例
基于ibatis-2.3.0.677版本。

1、 创建新的项目,并引入jar包

a)         ibatis-2.3.0.677.jar

b)        mysql驱动

2、 在类路径中(classes下)提供ibatis的配置文件:sqlMapConfig.xml

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

<!DOCTYPE sqlMapConfig    

    PUBLIC "-//ibatis.apache.org//DTD SQL Map Config 2.0//EN"    

    "http://ibatis.apache.org/dtd/sql-map-config-2.dtd">

<sqlMapConfig>

<transactionManager type="JDBC" commitRequired="false">

    <dataSource type="SIMPLE">

      <property name="JDBC.Driver" value="com.mysql.jdbc.Driver"/>

      <property name="JDBC.ConnectionURL" value="jdbc:mysql://127.0.0.1/ibatis"/>

      <property name="JDBC.Username" value="root"/>

      <property name="JDBC.Password" value="mysql"/>

    </dataSource>

</transactionManager>

<sqlMap resource="com/ibatis/model/User.xml"/>

</sqlMapConfig>

3、创建实体类:User.java

package com.ibatis.model;

publicclass User {

    privateintid;

    private String username;

    private String password;

  

    publicint getId() {

       returnid;

    }

    publicvoid setId(int id) {

       this.id = id;

    }

    public String getPassword() {

       returnpassword;

    }

    publicvoid setPassword(String password) {

       this.password = password;

    }

    public String getUsername() {

       returnusername;

    }

    publicvoid setUsername(String username) {

       this.username = username;

    }

}

4、创建针对User对象的CRUD的xml映射配置:User.xml

<?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="User">

<!-- Use type aliases to avoid typing the full classname every time. -->

<typeAlias alias="User" type="com.ibatis.model.User"/>

<!-- Select with no parameters using the result map for Account class. -->

<select id="selectAllUsers" resultresultparameterparameterparameterparameter+ e);

        }

    }

    public static SqlMapClient getSqlMapInstance() {

        //提供静态方法返回静态区块中得到的SqlMapClient

        return sqlMap;

    }

}

主要用法:
如何获得刚插入记录的自增长ID值?

以下所有虚线上面代表User.xml中的内容,虚线下方是测试类中的内容:User类沿用上一篇中的User类

<insert id="insertUser" parameterkeyProperty="id">

       SELECT @@IDENTITY AS ID

  </selectKey>

</insert>

       User user = new User();

       user.setUsername("张三");

       user.setPassword("张三密码");

     

       //如果主键是自动生成的,则其返回值可以通过<selectKey>标签来设置

       //如果不通过<selectKey>标签来设置,则返回值为空!

       //<selectKey >中的keyProperty,是指定User中的id属性,当调用结束之后,

       //user对象的id值和insert方法的返回值都是这条记录的ID值!

       Object obj = sqlMapper.insert("insertUser", user);

parameterClass的使用

<insert id="insertUser" parameterkeyProperty="id">

       SELECT @@IDENTITY AS ID

  </selectKey>

</insert>



<insert id="insertUser2">

  insert into t_user values (

       null,#username#,#password#

  )

  <selectKey resultkeyProperty="id">

       SELECT @@IDENTITY AS ID

  </selectKey>

</insert>

insertUser使用了parameterClass,所以必需传入User类型的对象

       User user = new User();

       user.setUsername("张三");

       user.setPassword("张三密码");

     

       //传递进去的对象,必须是User类型

       Object obj = sqlMapper.insert("insertUser", user);

insertUser2没有使用parameterClass,所以可以传入任意具有相应属性值的对象

       JustAnObject anobj = new JustAnObject();

       anobj.setUsername("用户名");

       anobj.setPassword("用户密码");

     

       //如果没有指定parameterClass属性,则任何一个具有相应属性值

       //的对象都可以被传递进去

       Object obj = sqlMapper.insert("insertUser2", anobj);

parameterMap的使用

<parameterMap id="insertUser-param">

  <parameter property="username"/>

  <parameter property="password"/>

</parameterMap>

<insert id="insertUser" parameterMap="insertUser-param">

  insert into t_user values (

       null,?,?

  )

  <selectKey resultkeyProperty="id">

       SELECT @@IDENTITY AS ID

  </selectKey>

</insert>

parameterMap用于传入参数,以便匹配SQL语句中的?号

       User user = new User();

       user.setUsername("张三dd");

       user.setPassword("张三密码dd");

     

       Object obj = sqlMapper.insert("insertUser", user);

利用parameterMap,可以定义参数对象的属性如何映射到SQL查询语句的动态参数上,注意parameterMap中<parameter/>标签的先后顺序不能颠倒!

如何将查询结果映射到不同的对象?(resultClass的使用)

package com.ibatis.model;

publicclassOtherObject {

    privateintid;

    private String prop1;

    private String prop2;

  

    publicint getId() {

       returnid;

    }

    publicvoid setId(int id) {

       this.id = id;

    }

    public String getProp1() {

       return Prop1;

    }

    publicvoid set Prop1 (String Prop1) {

       this. Prop1 = Prop1;

    }

    public String getProp2() {

       returnusername;

    }

    publicvoid setProp2 (String Prop2) {

       this.Prop2 = Prop2;

    }

}

<select id="selectUserForOtherObject" resultparameterid="ooResult">

  <result property="prop1" column="username"/>

  <result property="prop2" column="password"/>

</resultMap>

<!--

如果使用resultMap来定义如何映射,则如下语句不可写成:

select username as prop1,password as prop2 ....

-->

<select id="selectUserForOtherObject2" parameterresultMap="ooResult">

      select

      username,

      password

      from t_user where id=#value#

</select>

       //查找t_user表,将其结果映射到一个属性名不同的对象中!

       OtherObject obj = (OtherObject)sqlMapper.queryForObject("selectUserForOtherObject2", 17);

       System.out.println(obj.getProp1()+","+obj.getProp2());

如何将查询结果集映射为xml格式的数据?

<select id="selectXmlData" resultxmlResultName="User" parameterresultxmlResultName="User">

  select * from t_user

</select>

       //查找t_user表,将其结果映射到xml!

       //返回值是xml形式的字符串

       Object obj = (Object)sqlMapper.queryForObject("selectXmlData", 1);

       System.out.println(obj);

       //查找t_user表,将其结果映射到xml!

       List list  = (List)sqlMapper.queryForList("selectXmlDatas");

       System.out.println(list);

如何用Map类型的对象作为传入参数?

<!--

这里,可以使用全路径类名,如:

java.util.Map

java.util.HashMap

java.util.TreeMap



map

-->

<insert id="insertUser" parameterresulttransaction-manager="事务管理器名称">

        <tx:attributes>

           <tx:method name="add*" propagation="REQUIRED"/>

           <tx:method name="del*" propagation="REQUIRED"/>

           <tx:method name="update*" propagation="REQUIRED"/>

           <tx:method name="*" read-only="true"/>

       </tx:attributes>

    </tx:advice>

  

    <!-- 配置哪些类的方法需要进行事务管理 -->

    <aop:config>

       <aop:pointcut id="allManagerMethod" expression="execution(* com.ibatis.manager.*.*(..))"/>

       <aop:advisor advice-ref="txAdvice" pointcut-ref="allManagerMethod"/>

    </aop:config>

这些事务都是声明在业务逻辑层的对象上的。

第二,我们需要一个事务管理器,对事务进行管理。

    <bean id="txManager" ref="dataSource"/>

    </bean>

    <bean id="dataSource" value="com.mysql.jdbc.Driver"/>

        <property name="url" value="jdbc:mysql://127.0.0.1/ibatis"/>

        <property name="username" value="root"/>

        <property name="password" value="mysql"/>

    </bean>

此后,我们需要让spring来管理SqlMapClient对象:

    <bean id="sqlMapClient" encoding="UTF-8" ?>

<!DOCTYPE sqlMapConfig    

    PUBLIC "-//ibatis.apache.org//DTD SQL Map Config 2.0//EN"    

    "http://ibatis.apache.org/dtd/sql-map-config-2.dtd">

<sqlMapConfig>

    <settings

       lazyLoadingEnabled="true"

        useStatementNamespaces="true" />

    <!-- 使用spring之后,数据源的配置移植到了spring上,所以iBATIS本身的配置可以取消 -->

  <sqlMap resource="com/ibatis/dao/impl/ibatis/User.xml"/>

</sqlMapConfig>

User.xml:如下

<?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="User">

<!-- Use type aliases to avoid typing the full classname every time. -->

<typeAlias alias="User" type="com.ibatis.User"/>

<!-- Select with no parameters using the result map for Account class. -->

<select id="selectAllUsers" resultresultparameterparameterparameterparameterclass="com.ibatils.dao.impl.ibatis.UserDAOImpl">

     <property name=”sqlMapClient” ref=”sqlMapClient”/>

</bean>

这就是所有需要注意的问题了,此后就可以在业务逻辑层调用DAO对象了!

热点排行