iBATIS一词来源于“internet”和“abatis”的组合,是一个由Clinton Begin在2002年发起的开放源代码项目。于2010年6月16号被谷歌托管,改名为MyBatis。是一个基于SQL映射支持Java和·NET的持久层框架。
所谓“半自动化”,可能理解上有点生涩。纵观目前主流的 ORM(对象关系映射),无论 Hibernate还是Apache OJB,都对数据库结构提供了较为完整的封装,提供了从POJO到数据库表的全套映射机制。程序员往往只需定义好了POJO 到数据库表的映射关系,即可通过 Hibernate或者OJB 提供的方法完成持久层操作。程序员甚至不需要对 SQL 的熟练掌握,Hibernate/OJB 会根据制定的存储逻辑,自动生成对应的 SQL 并调用 JDBC 接口加以执行。
遇到以下情况不好使了:
1. 系统的部分或全部数据来自现有数据库,处于安全考虑,只对开发团队提供几条Select SQL(或存储过程)以获取所需数据,具体的表结构不予公开。
3. 系统数据处理量巨大,性能要求极为苛刻,这往往意味着我们必须通过经过高度优化的SQL语句(或存储过程)才能达到系统性能设计指标。
“半自动化”的ibatis,却刚好解决了这个问题。
这里的“半自动化”,是相对Hibernate等提供了全面的数据库封装机制的“全自动化”ORM 实现而言,“全自动”ORM 实现了 POJO 和数据库表之间的映射,以及 SQL 的自动生成和执行。而ibatis 的着力点,则在于POJO 与 SQL之间的映射关系。也就是说,ibatis并不会为程序员在运行期自动生成 SQL 执行。具体的 SQL 需要程序员编写,然后通过映射配置文件,将SQL所需的参数,以及返回的结果字段映射到指定 POJO。
使用ibatis 提供的ORM机制,对业务逻辑实现人员而言,面对的是纯粹的 Java对象,这一层与通过 Hibernate 实现 ORM 而言基本一致,而对于具体的数据操作,Hibernate会自动生成SQL 语句,而ibatis 则要求开发者编写具体的 SQL 语句。相对Hibernate等“全自动”ORM机制而言,ibatis 以 SQL开发的工作量大和数据库移植性上差为代价,为系统设计提供了更大的*空间。作为“全自动”ORM实现的一种有益补充,ibatis 的出现显得别具意义。
搭建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:
- package com.iflytek.entity;
- import java.sql.Date;
- /**
- * @author xudongwang 2011-12-31
- *
- * Email:xdwangiflytek@gmail.com
- *
- */
- publicclass Student {
- // 注意这里需要保证有一个无参构造方法,因为包括Hibernate在内的映射都是使用反射的,如果没有无参构造可能会出现问题
- privateint id;
- private String name;
- private Date birth;
- privatefloat score;
- publicint getId() {
- return id;
- }
- publicvoid setId(int id) {
- this.id = id;
- }
- public String getName() {
- return name;
- }
- publicvoid setName(String name) {
- this.name = name;
- }
- public Date getBirth() {
- return birth;
- }
- publicvoid setBirth(Date birth) {
- this.birth = birth;
- }
- publicfloat getScore() {
- return score;
- }
- publicvoid setScore(float score) {
- this.score = score;
- }
- @Override
- public String toString() {
- return"id=" + id + "\tname=" + name + "\tmajor=" + birth + "\tscore="
- + score + "\n";
- }
- }
SqlMap.properties :
- driver=com.mysql.jdbc.Driver
- url=jdbc:mysql://localhost:3306/ibatis
- username=root
- password=123
Student.xml :
- <?xmlversion="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>
- <!-- 通过typeAlias使得我们在下面使用Student实体类的时候不需要写包名 -->
- <typeAliasalias="Student"type="com.iflytek.entity.Student"/>
- <!-- 这样以后改了sql,就不需要去改java代码了 -->
- <!-- id表示select里的sql语句,resultClass表示返回结果的类型 -->
- <selectid="selectAllStudent"resultClass="Student">
- select * from
- tbl_student
- </select>
- <!-- parameterClass表示参数的内容 -->
- <!-- #表示这是一个外部调用的需要传进的参数,可以理解为占位符 -->
- <selectid="selectStudentById"parameterClass="int"resultClass="Student">
- select * from tbl_student where id=#id#
- </select>
- <!-- 注意这里的resultClass类型,使用Student类型取决于queryForList还是queryForObject -->
- <selectid="selectStudentByName"parameterClass="String"
- resultClass="Student">
- select name,birth,score from tbl_student where name like
- '%$name$%'
- </select>
- <insertid="addStudent"parameterClass="Student">
- insert into
- tbl_student(name,birth,score) values
- (#name#,#birth#,#score#)
- <selectKeyresultClass="int"keyProperty="id">
- select @@identity as inserted
- <!-- 这里需要说明一下不同的数据库主键的生成,对各自的数据库有不同的方式: -->
- <!-- mysql:SELECT LAST_INSERT_ID() AS VALUE -->
- <!-- mssql:select @@IDENTITY as value -->
- <!-- oracle:SELECT STOCKIDSEQUENCE.NEXTVAL AS VALUE FROM DUAL -->
- <!-- 还有一点需要注意的是不同的数据库生产商生成主键的方式不一样,有些是预先生成 (pre-generate)主键的,如Oracle和PostgreSQL。
- 有些是事后生成(post-generate)主键的,如MySQL和SQL Server 所以如果是Oracle数据库,则需要将selectKey写在insert之前 -->
- </selectKey>
- </insert>
- <deleteid="deleteStudentById"parameterClass="int">
- <!-- #id#里的id可以随意取,但是上面的insert则会有影响,因为上面的name会从Student里的属性里去查找 -->
- <!-- 我们也可以这样理解,如果有#占位符,则ibatis会调用parameterClass里的属性去赋值 -->
- delete from tbl_student where id=#id#
- </delete>
- <updateid="updateStudent"parameterClass="Student">
- update tbl_student set
- name=#name#,birth=#birth#,score=#score# where id=#id#
- </update>
- </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 :
- <?xmlversion="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>
- <!-- 引用JDBC属性的配置文件 -->
- <propertiesresource="com/iflytek/entity/SqlMap.properties"/>
- <!-- 使用JDBC的事务管理 -->
- <transactionManagertype="JDBC">
- <!-- 数据源 -->
- <dataSourcetype="SIMPLE">
- <propertyname="JDBC.Driver"value="${driver}"/>
- <propertyname="JDBC.ConnectionURL"value="${url}"/>
- <propertyname="JDBC.Username"value="${username}"/>
- <propertyname="JDBC.Password"value="${password}"/>
- </dataSource>
- </transactionManager>
- <!-- 这里可以写多个实体的映射文件 -->
- <sqlMapresource="com/iflytek/entity/Student.xml"/>
- </sqlMapConfig>
StudentDao :
- package com.iflytek.dao;
- import java.util.List;
- import com.iflytek.entity.Student;
- /**
- * @author xudongwang 2011-12-31
- *
- * Email:xdwangiflytek@gmail.com
- *
- */
- publicinterface StudentDao {
- /**
- * 添加学生信息
- *
- * @param student
- * 学生实体
- * @return 返回是否添加成功
- */
- publicboolean addStudent(Student student);
- /**
- * 根据学生id删除学生信息
- *
- * @param id
- * 学生id
- * @return 删除是否成功
- */
- publicboolean deleteStudentById(int id);
- /**
- * 更新学生信息
- *
- * @param student
- * 学生实体
- * @return 更新是否成功
- */
- publicboolean updateStudent(Student student);
- /**
- * 查询全部学生信息
- *
- * @return 返回学生列表
- */
- public List<Student> selectAllStudent();
- /**
- * 根据学生姓名模糊查询学生信息
- *
- * @param name
- * 学生姓名
- * @return 学生信息列表
- */
- public List<Student> selectStudentByName(String name);
- /**
- * 根据学生id查询学生信息
- *
- * @param id
- * 学生id
- * @return 学生对象
- */
- public Student selectStudentById(int id);
- }
StudentDaoImpl :
- package com.iflytek.daoimpl;
- import java.io.IOException;
- import java.io.Reader;
- import java.sql.SQLException;
- import java.util.List;
- import com.ibatis.common.resources.Resources;
- import com.ibatis.sqlmap.client.SqlMapClient;
- import com.ibatis.sqlmap.client.SqlMapClientBuilder;
- import com.iflytek.dao.StudentDao;
- import com.iflytek.entity.Student;
- /**
- * @author xudongwang 2011-12-31
- *
- * Email:xdwangiflytek@gmail.com
- *
- */
- publicclass StudentDaoImpl implements StudentDao {
- privatestatic SqlMapClient sqlMapClient = null;
- // 读取配置文件
- static {
- try {
- Reader reader = Resources
- .getResourceAsReader("com/iflytek/entity/SqlMapConfig.xml");
- sqlMapClient = SqlMapClientBuilder.buildSqlMapClient(reader);
- reader.close();
- } catch (IOException e) {
- e.printStackTrace();
- }
- }
- publicboolean addStudent(Student student) {
- Object object = null;
- boolean flag = false;
- try {
- object = sqlMapClient.insert("addStudent", student);
- System.out.println("添加学生信息的返回值:" + object);
- } catch (SQLException e) {
- e.printStackTrace();
- }
- if (object != null) {
- flag = true;
- }
- return flag;
- }
- publicboolean deleteStudentById(int id) {
- boolean flag = false;
- Object object = null;
- try {
- object = sqlMapClient.delete("deleteStudentById", id);
- System.out.println("删除学生信息的返回值:" + object + ",这里返回的是影响的行数");
- } catch (SQLException e) {
- e.printStackTrace();
- }
- if (object != null) {
- flag = true;
- }
- return flag;
- }
- publicboolean updateStudent(Student student) {
- boolean flag = false;
- Object object = false;
- try {
- object = sqlMapClient.update("updateStudent", student);
- System.out.println("更新学生信息的返回值:" + object + ",返回影响的行数");
- } catch (SQLException e) {
- e.printStackTrace();
- }
- if (object != null) {
- flag = true;
- }
- return flag;
- }
- public List<Student> selectAllStudent() {
- List<Student> students = null;
- try {
- students = sqlMapClient.queryForList("selectAllStudent");
- } catch (SQLException e) {
- e.printStackTrace();
- }
- return students;
- }
- public List<Student> selectStudentByName(String name) {
- List<Student> students = null;
- try {
- students = sqlMapClient.queryForList("selectStudentByName",name);
- } catch (SQLException e) {
- e.printStackTrace();
- }
- return students;
- }
- public Student selectStudentById(int id) {
- Student student = null;
- try {
- student = (Student) sqlMapClient.queryForObject(
- "selectStudentById", id);
- } catch (SQLException e) {
- e.printStackTrace();
- }
- return student;
- }
- }
TestIbatis.java :
- package com.iflytek.test;
- import java.sql.Date;
- import java.util.List;
- import com.iflytek.daoimpl.StudentDaoImpl;
- import com.iflytek.entity.Student;
- /**
- * @author xudongwang 2011-12-31
- *
- * Email:xdwangiflytek@gmail.com
- *
- */
- publicclass TestIbatis {
- publicstaticvoid main(String[] args) {
- StudentDaoImpl studentDaoImpl = new StudentDaoImpl();
- System.out.println("测试插入");
- Student addStudent = new Student();
- addStudent.setName("李四");
- addStudent.setBirth(Date.valueOf("2011-09-02"));
- addStudent.setScore(88);
- System.out.println(studentDaoImpl.addStudent(addStudent));
- System.out.println("测试根据id查询");
- System.out.println(studentDaoImpl.selectStudentById(1));
- System.out.println("测试模糊查询");
- List<Student> *Lists = studentDaoImpl.selectStudentByName("李");
- for (Student student : *Lists) {
- System.out.println(student);
- }
- System.out.println("测试查询所有");
- List<Student> students = studentDaoImpl.selectAllStudent();
- for (Student student : students) {
- System.out.println(student);
- }
- System.out.println("根据id删除学生信息");
- System.out.println(studentDaoImpl.deleteStudentById(1));
- System.out.println("测试更新学生信息");
- Student updateStudent = new Student();
- updateStudent.setId(1);
- updateStudent.setName("李四1");
- updateStudent.setBirth(Date.valueOf("2011-08-07"));
- updateStudent.setScore(21);
- System.out.println(studentDaoImpl.updateStudent(updateStudent));
- }
- }