`

iBatis小入门

阅读更多
iBatis 简介:

iBatis 是apache 的一个开源项目,一个O/R Mapping 解决方案,iBatis 最大的特点就是小巧,上手很快。如果不需要太多复杂的功能,iBatis 是能够满足你的要求又足够灵活的最简单的解决方案,现在的iBatis 已经改名为Mybatis 了。

官网为:http://www.mybatis.org/



搭建iBatis 开发环境:

1 、导入相关的jar 包,ibatis-2.3.0.677.jar 、mysql-connector-java-5.1.6-bin.jar

        2 、编写配置文件:

              Jdbc 连接的属性文件

              总配置文件, SqlMapConfig.xml

              关于每个实体的映射文件(Map 文件)



Demo :

Student.java:
01 package com.iflytek.entity;
02
03 import java.sql.Date;
04
05 /**
06 * @author xudongwang 2011-12-31
07 *
08 *         Email:xdwangiflytek@gmail.com
09 *
10 */
11 public class Student {
12     // 注意这里需要保证有一个无参构造方法,因为包括Hibernate在内的映射都是使用反射的,如果没有无参构造可能会出现问题
13     private int id;
14     private String name;
15     private Date birth;
16     private float score;
17
18     public int getId() {
19         return id;
20     }
21
22     public void setId(int id) {
23         this.id = id;
24     }
25
26     public String getName() {
27         return name;
28     }
29
30     public void setName(String name) {
31         this.name = name;
32     }
33
34     public Date getBirth() {
35         return birth;
36     }
37
38     public void setBirth(Date birth) {
39         this.birth = birth;
40     }
41
42     public float getScore() {
43         return score;
44     }
45
46     public void setScore(float score) {
47         this.score = score;
48     }
49
50     @Override
51     public String toString() {
52         return "id=" + id + "\tname=" + name + "\tmajor=" + birth + "\tscore="
53                 + score + "\n";
54     }
55
56 }

SqlMap.properties :
1 driver=com.mysql.jdbc.Driver
2 url=jdbc:mysql://localhost:3306/ibatis
3 username=root
4 password=123

Student.xml :
01 <?xml version="1.0" encoding="UTF-8" ?>
02 <!DOCTYPE sqlMap PUBLIC "-//ibatis.apache.org//DTD SQL Map 2.0//EN"
03    "http://ibatis.apache.org/dtd/sql-map-2.dtd">
04
05 <sqlMap>
06     <!-- 通过typeAlias使得我们在下面使用Student实体类的时候不需要写包名 -->
07     <typeAlias alias="Student" type="com.iflytek.entity.Student" />
08
09     <!-- 这样以后改了sql,就不需要去改java代码了 -->
10     <!-- id表示select里的sql语句,resultClass表示返回结果的类型 -->
11     <select id="selectAllStudent" resultClass="Student">
12         select * from
13         tbl_student
14     </select>
15
16     <!-- parameterClass表示参数的内容 -->
17     <!-- #表示这是一个外部调用的需要传进的参数,可以理解为占位符 -->
18     <select id="selectStudentById" parameterClass="int" resultClass="Student">
19         select * from tbl_student where id=#id#
20     </select>
21
22     <!-- 注意这里的resultClass类型,使用Student类型取决于queryForList还是queryForObject -->
23     <select id="selectStudentByName" parameterClass="String"
24         resultClass="Student">
25         select name,birth,score from tbl_student where name like
26         '%$name$%'
27     </select>
28
29     <insert id="addStudent" parameterClass="Student">
30         insert into
31         tbl_student(name,birth,score) values
32         (#name#,#birth#,#score#);
33         <selectKey resultClass="int" keyProperty="id">
34             select @@identity as inserted
35             <!-- 这里需要说明一下不同的数据库主键的生成,对各自的数据库有不同的方式: -->
36             <!-- mysql:SELECT LAST_INSERT_ID() AS VALUE -->
37             <!-- mssql:select @@IDENTITY as value -->
38             <!-- oracle:SELECT STOCKIDSEQUENCE.NEXTVAL AS VALUE FROM DUAL -->
39             <!-- 还有一点需要注意的是不同的数据库生产商生成主键的方式不一样,有些是预先生成 (pre-generate)主键的,如Oracle和PostgreSQL。
40                 有些是事后生成(post-generate)主键的,如MySQL和SQL Server 所以如果是Oracle数据库,则需要将selectKey写在insert之前 -->
41         </selectKey>
42     </insert>
43
44     <delete id="deleteStudentById" parameterClass="int">
45         <!-- #id#里的id可以随意取,但是上面的insert则会有影响,因为上面的name会从Student里的属性里去查找 -->
46         <!-- 我们也可以这样理解,如果有#占位符,则ibatis会调用parameterClass里的属性去赋值 -->
47         delete from tbl_student where id=#id#
48     </delete>
49
50     <update id="updateStudent" parameterClass="Student">
51         update tbl_student set
52         name=#name#,birth=#birth#,score=#score# where id=#id#
53     </update>
54
55 </sqlMap>

说明:

如果xml 中没有ibatis 的提示,则window --> Preference--> XML-->XML Catalog---> 点击add

选择uri URI: 请选择本地文件系统上

iBatisDemo1/WebContent/WEB-INF/lib/sql-map-config-2.dtd 文件;

Key Type: 选择Schema Location;

Key: 需要联网的,不建议使用;



SqlMapConfig.xml :
01 <?xml version="1.0" encoding="UTF-8"?>
02 <!DOCTYPE sqlMapConfig PUBLIC "-//ibatis.apache.org//DTD SQL Map Config 2.0//EN"
03     "http://ibatis.apache.org/dtd/sql-map-config-2.dtd">
04
05 <sqlMapConfig>
06     <!-- 引用JDBC属性的配置文件 -->
07     <properties resource="com/iflytek/entity/SqlMap.properties" />
08     <!-- 使用JDBC的事务管理 -->
09     <transactionManager type="JDBC">
10         <!-- 数据源 -->
11         <dataSource type="SIMPLE">
12             <property name="JDBC.Driver" value="${driver}" />
13             <property name="JDBC.ConnectionURL" value="${url}" />
14             <property name="JDBC.Username" value="${username}" />
15             <property name="JDBC.Password" value="${password}" />
16         </dataSource>
17     </transactionManager>
18     <!-- 这里可以写多个实体的映射文件 -->
19     <sqlMap resource="com/iflytek/entity/Student.xml" />
20 </sqlMapConfig>

StudentDao :
01 package com.iflytek.dao;
02
03 import java.util.List;
04
05 import com.iflytek.entity.Student;
06
07 /**
08 * @author xudongwang 2011-12-31
09 *
10 *         Email:xdwangiflytek@gmail.com
11 *
12 */
13 public interface StudentDao {
14
15     /**
16      * 添加学生信息
17      *
18      * @param student
19      *            学生实体
20      * @return 返回是否添加成功
21      */
22     public boolean addStudent(Student student);
23
24     /**
25      * 根据学生id删除学生信息
26      *
27      * @param id
28      *            学生id
29      * @return 删除是否成功
30      */
31     public boolean deleteStudentById(int id);
32
33     /**
34      * 更新学生信息
35      *
36      * @param student
37      *            学生实体
38      * @return 更新是否成功
39      */
40     public boolean updateStudent(Student student);
41
42     /**
43      * 查询全部学生信息
44      *
45      * @return 返回学生列表
46      */
47     public List<Student> selectAllStudent();
48
49     /**
50      * 根据学生姓名模糊查询学生信息
51      *
52      * @param name
53      *            学生姓名
54      * @return 学生信息列表
55      */
56     public List<Student> selectStudentByName(String name);
57
58     /**
59      * 根据学生id查询学生信息
60      *
61      * @param id
62      *            学生id
63      * @return 学生对象
64      */
65     public Student selectStudentById(int id);
66
67 }

StudentDaoImpl :
001 package com.iflytek.daoimpl;
002
003 import java.io.IOException;
004 import java.io.Reader;
005 import java.sql.SQLException;
006 import java.util.List;
007
008 import com.ibatis.common.resources.Resources;
009 import com.ibatis.sqlmap.client.SqlMapClient;
010 import com.ibatis.sqlmap.client.SqlMapClientBuilder;
011 import com.iflytek.dao.StudentDao;
012 import com.iflytek.entity.Student;
013
014 /**
015 * @author xudongwang 2011-12-31
016 *
017 *         Email:xdwangiflytek@gmail.com
018 *
019 */
020 public class StudentDaoImpl implements StudentDao {
021
022     private static SqlMapClient sqlMapClient = null;
023
024     // 读取配置文件
025     static {
026         try {
027             Reader reader = Resources
028                     .getResourceAsReader("com/iflytek/entity/SqlMapConfig.xml");
029             sqlMapClient = SqlMapClientBuilder.buildSqlMapClient(reader);
030             reader.close();
031         } catch (IOException e) {
032             e.printStackTrace();
033         }
034     }
035
036     public boolean addStudent(Student student) {
037         Object object = null;
038         boolean flag = false;
039         try {
040             object = sqlMapClient.insert("addStudent", student);
041             System.out.println("添加学生信息的返回值:" + object);
042         } catch (SQLException e) {
043             e.printStackTrace();
044         }
045         if (object != null) {
046             flag = true;
047         }
048         return flag;
049     }
050
051     public boolean deleteStudentById(int id) {
052         boolean flag = false;
053         Object object = null;
054         try {
055             object = sqlMapClient.delete("deleteStudentById", id);
056             System.out.println("删除学生信息的返回值:" + object + ",这里返回的是影响的行数");
057         } catch (SQLException e) {
058             e.printStackTrace();
059         }
060         if (object != null) {
061             flag = true;
062
063         }
064         return flag;
065
066     }
067
068     public boolean updateStudent(Student student) {
069         boolean flag = false;
070         Object object = false;
071         try {
072             object = sqlMapClient.update("updateStudent", student);
073             System.out.println("更新学生信息的返回值:" + object + ",返回影响的行数");
074         } catch (SQLException e) {
075             e.printStackTrace();
076         }
077         if (object != null) {
078             flag = true;
079         }
080         return flag;
081     }
082
083     public List<Student> selectAllStudent() {
084         List<Student> students = null;
085         try {
086             students = sqlMapClient.queryForList("selectAllStudent");
087         } catch (SQLException e) {
088             e.printStackTrace();
089         }
090         return students;
091     }
092
093     public List<Student> selectStudentByName(String name) {
094         List<Student> students = null;
095         try {
096             students = sqlMapClient.queryForList("selectStudentByName",name);
097         } catch (SQLException e) {
098             e.printStackTrace();
099         }
100         return students;
101     }
102
103     public Student selectStudentById(int id) {
104         Student student = null;
105         try {
106             student = (Student) sqlMapClient.queryForObject(
107                     "selectStudentById", id);
108         } catch (SQLException e) {
109             e.printStackTrace();
110         }
111         return student;
112     }
113 }

TestIbatis.java :
01 package com.iflytek.test;
02
03 import java.sql.Date;
04 import java.util.List;
05
06 import com.iflytek.daoimpl.StudentDaoImpl;
07 import com.iflytek.entity.Student;
08
09 /**
10 * @author xudongwang 2011-12-31
11 *
12 *         Email:xdwangiflytek@gmail.com
13 *
14 */
15 public class TestIbatis {
16
17     public static void main(String[] args) {
18         StudentDaoImpl studentDaoImpl = new StudentDaoImpl();
19
20         System.out.println("测试插入");
21         Student addStudent = new Student();
22         addStudent.setName("李四");
23         addStudent.setBirth(Date.valueOf("2011-09-02"));
24         addStudent.setScore(88);
25         System.out.println(studentDaoImpl.addStudent(addStudent));
26
27         System.out.println("测试根据id查询");
28         System.out.println(studentDaoImpl.selectStudentById(1));
29
30         System.out.println("测试模糊查询");
31         List<Student> mohuLists = studentDaoImpl.selectStudentByName("李");
32         for (Student student : mohuLists) {
33             System.out.println(student);
34         }
35
36         System.out.println("测试查询所有");
37         List<Student> students = studentDaoImpl.selectAllStudent();
38         for (Student student : students) {
39             System.out.println(student);
40         }
41
42         System.out.println("根据id删除学生信息");
43         System.out.println(studentDaoImpl.deleteStudentById(1));
44
45         System.out.println("测试更新学生信息");
46         Student updateStudent = new Student();
47         updateStudent.setId(1);
48         updateStudent.setName("李四1");
49         updateStudent.setBirth(Date.valueOf("2011-08-07"));
50         updateStudent.setScore(21);
51         System.out.println(studentDaoImpl.updateStudent(updateStudent));
52
53     }
54 }

iBatis 的优缺点:

优点:

1、 减少代码量,简单;

2、 性能增强;

3、 Sql 语句与程序代码分离;

4、 增强了移植性;

缺点:

1、 和Hibernate 相比,sql 需要自己写;

2、 参数数量只能有一个,多个参数时不太方便;
分享到:
评论

相关推荐

    Ibatis 入门经典 实例

    《Ibatis 入门经典 实例》 Ibatis 是一款著名的轻量级 Java 持久层框架,它提供了一种映射 SQL 和 Java 对象的简单方式,从而减轻了开发人员在数据库操作中的工作负担。这篇实例教程将带你深入理解 Ibatis 的核心...

    Ibatis入门例子,Ibatis教程

    在本教程中,我们将通过一个简单的Ibatis入门例子,带你逐步了解并掌握这个强大的框架。 首先,我们需要在项目中引入Ibatis的依赖。通常,我们会在Maven的pom.xml文件中添加以下依赖: ```xml &lt;groupId&gt;org....

    ibatisDemo 入门源码

    《IbatisDemo入门源码详解》 IbatisDemo是一个典型的基于Ibatis框架的入门示例,它为我们展示了如何在Java项目中使用Ibatis进行数据库操作。Ibatis,一个优秀的持久层框架,它允许开发者将SQL语句直接写在配置文件...

    ibatis入门

    **Ibatis 入门教程** Ibatis 是一个优秀的 Java ORM(对象关系映射)框架,它允许程序员将数据库操作与业务逻辑分离,提供灵活的 SQL 配置和映射机制,使得开发人员能够自由地编写 SQL 而不被 ORM 的复杂性所束缚。...

    ibatis ibatis入门教程

    【标题】:Ibatis Ibatis入门教程 【描述】:Ibatis是一款优秀的持久层框架,它简化了Java应用与数据库之间的交互,通过提供一个映射SQL的XML或注解方式,使得开发人员能够将精力集中在业务逻辑上,而不是繁琐的...

    ibatis入门到精通详细讲解

    **Ibatis 入门到精通详细讲解** Ibatis 是一个优秀的持久层框架,它允许开发者将 SQL 语句与 Java 代码分离,提供了一个灵活的映射框架,从而减轻了开发人员在数据库操作上的工作负担。这篇详细讲解将带你从入门到...

    最简单的iBatis入门例子

    本教程将带你一步步走进iBatis的世界,通过一个最简单的入门例子来了解其基本概念和使用方法。 一、iBatis简介 iBatis(现在称为MyBatis)是由Apache软件基金会维护的一个开源项目,它解决了Java应用程序直接操作...

    iBatis入门(三)

    **iBatis入门(三)** 在本篇中,我们将深入探讨iBatis,这是一个流行的开源持久层框架,它允许开发者将SQL语句与Java代码分离,提供更灵活的数据库操作方式。iBatis的核心是SQL Maps,这些映射文件包含了SQL语句以及...

    iBATIS教程之快速入门浅析

    在快速入门iBATIS的过程中,首先要理解其基本概念。iBATIS通过XML配置文件来定义SQL语句与Java对象之间的映射关系。这样,开发者可以在XML中编写SQL,而在Java代码中直接操作对象,从而实现对数据库的CRUD(Create、...

    ibatis 入门

    标题 "ibatis 入门" 暗示我们要探讨的是关于使用和理解开源持久层框架 iBATIS 的基础知识。iBATIS 是一个优秀的 Java 应用框架,它将 SQL 查询与 Java 代码分离,提供了更灵活的数据访问方式。这篇博客(博文链接已...

    struts2+spring+ibatis 项目 入门使用

    本项目旨在为初学者提供一个基础的入门指南,帮助理解并掌握这三个框架的集成与使用,实现CRUD(Create、Read、Update、Delete)操作。 **Struts2** 是一个基于MVC(Model-View-Controller)设计模式的开源Web应用...

    iBatis快速入门教程中文版

    **iBatis快速入门教程中文版** iBatis 是一个优秀的开源持久层框架,它允许开发者将SQL语句与Java代码分离,使得数据库操作更加灵活和可维护。本教程将帮助初学者快速理解和掌握iBatis的核心概念和使用方法。 **一...

    关于ibatis学习入门的小实例

    本教程“关于ibatis学习入门的小实例”旨在帮助初学者快速理解并掌握Ibatis的基本用法和核心概念。以下是一些关键知识点的详细介绍: 1. **配置文件**:Ibatis的配置文件(myibatis-config.xml)是整个系统的入口,...

    ibatis 自己学的一个ibatis项目(只是打通了Oracle) 非常适合入门

    自己写了一个Ibatis入门文件 JDK用的1.4 ibatis用的2.3.0 一定要注意版本问题,不然出现本本不兼容很费劲,我调了一上午,注意一定要用JDK1.4 ibatis2.3.0! 数据库自己建一张简单的表就行了,特别说明 只适合新手...

    Ibatis 简单入门实例

    在这个简单的入门实例中,我们将深入理解Ibatis的基本概念和用法。 首先,我们需要了解Ibatis的核心组件:SqlSessionFactory和SqlSession。SqlSessionFactory是Ibatis的工厂类,用于创建SqlSession对象。SqlSession...

    IBatis3 入门开发

    标题"IBatis3 入门开发"指的是关于如何开始使用和理解iBATIS 3,这是一个轻量级的Java持久层框架,主要用于简化数据库操作。iBATIS 3 提供了SQL映射框架,使得开发者可以直接编写SQL语句,将数据访问逻辑与业务逻辑...

    ibatis.net入门实例,应用程序

    4,配置ibatis对应pojo的sqlmap文件 5,把providers.config复制到debug目录下,不用做任何修改 6,把SqlMap.config复制到debug目录下,只需修改其中的数据库联接信息,包括provider和dataSource 7,建数据库表 注意...

Global site tag (gtag.js) - Google Analytics