1.回顾jdbc开发 orm概述

  orm是一种解决持久层对象关系映射的规则,而不是一种具体技术。jdbc/dbutils/springdao,hibernate/springorm,mybaits同属于ORM解决方案之一。

2.mybaits

  mybatis基于jdbc,兼顾难易度和速度。

3.mybatis快速入门

  导入lib包

  在src目录下配置mybatis.cfg.xml

<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration>
<!--加载类路径下的属性文件-->
<properties resource="db.properties">
</properties>
<!--设置类型别名-->
<typeAliases>
<typeAlias type="app04.Student" alias="student"/>
</typeAliases>
<!--设置默认连接环境信息-->
<environments default="oracle_developer">
<!--连接环境信息,取一个唯一的名字-->
<environment id="mysql_developer">
<!--事务管理方式-->
<transactionManager type="jdbc"></transactionManager>
<!--使用连接池获取-->
<dataSource type="pooled">
<!--配置与数据库交互的4个必要属性-->
<property name="driver" value="${mysql.driver}"/>
<property name="url" value="${mysql.url}"/>
<property name="username" value="${mysql.username}"/>
<property name="password" value="${mysql.password}"/>
</dataSource>
</environment>
<environment id="oracle_developer">
<!--事务管理方式-->
<transactionManager type="jdbc"></transactionManager>
<!--使用连接池获取-->
<dataSource type="pooled">
<!--配置与数据库交互的4个必要属性-->
<property name="driver" value="oracle.jdbc.driver.OracleDriver"/>
<property name="url" value="jdbc:oracle:thin:@127.0.0.1:1521:orcl"/>
<property name="username" value="scott"/>
<property name="password" value="tiger"/>
</dataSource>
</environment>
</environments>
<!--加载映射文件-->
<mappers>
<mapper resource="app04/StudentMapper.xml"/>
<mapper resource="app09/StudentMapper.xml"/>
<mapper resource="app10/StudentMapper.xml"/>
<mapper resource="app11/StudentMapper.xml"/>
</mappers>
</configuration>

  实体类

  配置映射文件StudentMapper.xml

<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="studentNamespace">
<!--映射实体与表-->
<!--type表示实体的全路径名
id为实体与表的映射取一个唯一的编号-->
<resultMap id="studentMap" type="app04.Student">
<!--id标签映射主键属性,result标签映射非主键属性
property表示实体的属性名
column表示表的字段名-->
<id property="id" column="id"/>
<result property="name" column="name"/>
<result property="sal" column="sal"/>
</resultMap>
<!--insert属性:要书写insert语句
id表示为insert语句取一个唯一编号
parameterType表示要执行的dao中的方法的参数,如果是类的话,必须使用全路径名-->
<insert id="add1">
INSERT INTO students(id,name,sal) values(1,"haha",7000)
</insert>
<insert id="add2" parameterType="student">
INSERT INTO students(id,name,sal) values(#{id},#{name},#{sal})
</insert>
</mapper>

  获取连接

public class MybatisUtil {
private static ThreadLocal<SqlSession> threadLocal = new ThreadLocal<SqlSession>();
private static SqlSessionFactory sqlSessionFactory;
//加载位于mybatis.xml配置文件
static{
try {
Reader reader = Resources.getResourceAsReader("mybatis.cfg.xml");
sqlSessionFactory = new SqlSessionFactoryBuilder().build(reader);
} catch (IOException e) {
throw new RuntimeException(e);
}
} public static SqlSession getSqlSession(){
SqlSession sqlSession = threadLocal.get();
if(sqlSession == null){
sqlSession = sqlSessionFactory.openSession();
//将session与当前线程绑定在一起
threadLocal.set(sqlSession);
}
return sqlSession;
}
//关闭当前sqlsession,与当前线程分离
public static void closeSqlSession(){
SqlSession sqlSession = threadLocal.get();
if(sqlSession!=null){
sqlSession.close();
//分离,目的是为了尽早垃圾回收
threadLocal.remove();
}
} }

  dao

    public void add1() throws Exception{
SqlSession sqlSession = null;
try {
sqlSession = MybatisUtil.getSqlSession();
//默认事务开始,读取StudentMapper.xml映射文件中的sql语句
int i = sqlSession.insert("studentNamespace.add1");
sqlSession.commit();
System.out.println("本次操作影响了"+i+"行");
}catch (Exception e){
sqlSession.rollback();
throw e;
}finally {
MybatisUtil.closeSqlSession();
}
}
public void add2(Student student) throws Exception{
SqlSession sqlSession = null;
try {
sqlSession = MybatisUtil.getSqlSession();
//默认事务开始,读取StudentMapper.xml映射文件中的sql语句
sqlSession.insert("studentNamespace.add2",student);
sqlSession.commit();
}catch (Exception e){
sqlSession.rollback();
throw e;
}finally {
MybatisUtil.closeSqlSession();
}
}

4.mybatis工作流程

1)通过Reader对象读取src目录下的mybatis.cfg.xml配置文件(该文本的位置和名字可任意)

2)通过SqlSessionFactoryBuilder对象创建SqlSessionFactory对象

3)从当前线程中获取SqlSession对象

4)事务开始,在mybatis中默认

5)通过SqlSession对象读取StudentMapper.xml映射文件中的操作编号,从而读取sql语句

6)事务提交,必写

7)关闭SqlSession对象,并且分开当前线程与SqlSession对象,让GC尽早回收

5基于MybatisUtil工具类,完成CURD操作

  映射配置文件

<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="app09.Student">
<resultMap id="studentMap" type="app09.Student">
<id property="id" column="id"/>
<result property="name" column="name"/>
<result property="sal" column="sal"/>
</resultMap>
<insert id="add" parameterType="app09.Student">
INSERT INTO students(id,name, sal) VALUES(#{id},#{name},#{sal})
</insert>
<!--如果参数不是实体,只是普通变量,#中的参数名可以随便写-->
<select id="findById" parameterType="int" resultType="app09.Student">
SELECT ID,NAME,SAL FROM students WHERE id = #{xxx}
</select> <select id="findAll" resultType="app09.Student">
SELECT ID,NAME,SAL FROM students
</select> <update id="update" parameterType="app09.Student">
UPDATE students SET name=#{name},sal=#{sal} WHERE id=#{id}
</update>
<delete id="delete" parameterType="app09.Student">
DELETE FROM students WHERE ID=#{id}
</delete>
</mapper>

  dao

    public void add(Student student) throws Exception{
SqlSession sqlSession = null;
try {
sqlSession = MybatisUtil.getSqlSession();
sqlSession.insert(Student.class.getName()+".add",student);
sqlSession.commit();
}catch (Exception e){
sqlSession.rollback();
throw e;
}finally {
MybatisUtil.closeSqlSession();
}
}
private Student findById(int id) {
Student student= null;
SqlSession sqlSession = null;
try {
sqlSession = MybatisUtil.getSqlSession();
student = sqlSession.selectOne(Student.class.getName() + ".findById", id);
sqlSession.commit();
}catch (Exception e){
sqlSession.rollback();
throw e;
}finally {
MybatisUtil.closeSqlSession();
}
return student; } private List<Student> findAll() {
List<Student> students = new ArrayList<>();
SqlSession sqlSession = null;
try {
sqlSession = MybatisUtil.getSqlSession();
students = sqlSession.selectList(Student.class.getName() + ".findAll");
sqlSession.commit();
}catch (Exception e){
sqlSession.rollback();
throw e;
}finally {
MybatisUtil.closeSqlSession();
}
return students;
}
private void update(Student student) {
SqlSession sqlSession = null;
try {
sqlSession = MybatisUtil.getSqlSession();
sqlSession.update(Student.class.getName()+".update",student);
sqlSession.commit();
}catch (Exception e){
sqlSession.rollback();
throw e;
}finally {
MybatisUtil.closeSqlSession();
}
}
private void delete(Student student) {
SqlSession sqlSession = null;
try {
sqlSession = MybatisUtil.getSqlSession();
sqlSession.delete(Student.class.getName()+".delete",student);
sqlSession.commit();
}catch (Exception e){
sqlSession.rollback();
throw e;
}finally {
MybatisUtil.closeSqlSession();
}
}

6.分页查询(mysql,oracle)

  映射配置文件

mysql

    <select id="findAllWithFy" parameterType="map" resultMap="studentMap">
SELECT id,name,sal FROM students LIMIT #{start},#{size}
</select>

oracle

    <select id="findAllWithFyByOracle" parameterType="map" resultMap="studentMap">
SELECT ID,NAME,SAL
FROM (SELECT ROWNUM IDS,ID,NAME,SAL
FROM STUDENTS
WHERE ROWNUM &lt; #{end})
WHERE IDS &gt; #{start}
</select>

  dao

    public List<Student> findAllWithFy(int start,int size){
List<Student> students = new ArrayList<>();
SqlSession sqlSession = null;
try {
sqlSession = MybatisUtil.getSqlSession();
Map<String, Object> map = new LinkedHashMap<>();
map.put("start",start);
map.put("size",size);
students = sqlSession.selectList(Student.class.getName()+".findAllWithFy",map);
sqlSession.commit();
return students;
}catch (Exception e){
sqlSession.rollback();
throw e;
}finally {
MybatisUtil.closeSqlSession();
}
}

7.动态SQL操作之查询

  映射配置文件

    <select id="findAll" parameterType="map" resultMap="studentMap">
SELECT ID,NAME,SAL FROM STUDENTS
<where>
<if test="pid!=null">
and ID = #{pid}
</if>
<if test="pname!=null">
and NAME = #{pname}
</if>
<if test="psal != null">
AND SAL &lt; #{psal}
</if>
</where>
</select>

  dao

    public List<Student> findAll(Integer id ,String name,Double sal){
List<Student> students = new ArrayList<>();
SqlSession sqlSession = null;
try {
sqlSession = MybatisUtil.getSqlSession();
Map<String, Object> map = new LinkedHashMap<>();
map.put("pid",id);
map.put("pname",name);
map.put("psal",sal);
students = sqlSession.selectList(Student.class.getName()+".findAll",map);
sqlSession.commit();
return students;
}catch (Exception e){
sqlSession.rollback();
throw new RuntimeException(e);
}finally {
MybatisUtil.closeSqlSession();
}
}

8.动态SQL操作之更新

  映射配置文件

    <update id="update" parameterType="map">
UPDATE STUDENTS
<set>
<if test="pname!=null">
name = #{pname},
</if>
<if test="psal != null">
sal = #{psal},
</if>
</set>
WHERE id = #{pid}
</update>

  dao

    public void update(Student student){
SqlSession sqlSession = null;
try {
sqlSession = MybatisUtil.getSqlSession();
Map<String, Object> map = new LinkedHashMap<>();
map.put("pid",student.getId());
map.put("pname",student.getName());
map.put("psal",student.getSal());
sqlSession.update(Student.class.getName()+".update",map);
sqlSession.commit();
}catch (Exception e){
sqlSession.rollback();
throw new RuntimeException(e);
}finally {
MybatisUtil.closeSqlSession();
}
}

9.动态SQL操作之删除

  映射配置文件

   <delete id="deleteAll" >
DELETE FROM students WHERE ID IN
<foreach collection="array" open="(" close=")" separator="," item="ids">
#{ids}
</foreach>
</delete>

  dao

   public void deleteAll(int... ids)throws Exception{
SqlSession sqlSession = null;
try {
sqlSession = MybatisUtil.getSqlSession();
sqlSession.delete(Student.class.getName()+".deleteAll",ids);
sqlSession.commit();
}catch (Exception e){
sqlSession.rollback();
throw new RuntimeException(e);
}finally {
MybatisUtil.closeSqlSession();
}
}

10.动态SQL操作之插入

  映射配置文件

    <!--sql片段-->
<sql id="key">
<trim suffixOverrides=",">
<if test="id != null">
id,
</if>
<if test="name != null">
name,
</if>
<if test="sal != null">
sal,
</if>
</trim>
</sql>
<sql id="value">
<trim suffixOverrides=",">
<if test="id != null">
#{id},
</if>
<if test="name != null">
#{name},
</if>
<if test="sal != null">
#{sal},
</if>
</trim>
</sql>
<insert id="insert" parameterType="app11.Student">
INSERT INTO students(<include refid="key"/>) values (<include refid="value"/>)
</insert>

  dao

    public void deleteList(List<Integer> ids)throws Exception{
SqlSession sqlSession = null;
try {
sqlSession = MybatisUtil.getSqlSession();
sqlSession.delete(Student.class.getName()+".deleteList",ids);
sqlSession.commit();
}catch (Exception e){
sqlSession.rollback();
throw new RuntimeException(e);
}finally {
MybatisUtil.closeSqlSession();
}
}

mybaits入门的更多相关文章

  1. Mybaits入门之起航

    前言 Mybaits技术现在很多公司都在使用,它提供了简单的API可以快速进行数据库操作,所以不管是自己做系统还是找工作都有必要了解一下. 学习一门技术如果是入门的话要么买书要么就是阅读官方的文档,而 ...

  2. Mybaits入门使用

    1.pom.xml配置信息 <dependencies> <dependency> <groupId>junit</groupId> <artif ...

  3. mybaits入门(含实例教程和源码) http://blog.csdn.net/u013142781/article/details/50388204

    前言:mybatis是一个非常优秀的存储过程和高级映射的优秀持久层框架.大大简化了,数据库操作中的常用操作.下面将介绍mybatis的一些概念和在eclipse上的实际项目搭建使用. 一.mybati ...

  4. mybaits入门学习

    学习了简单的mybatis的配置 Bean层: 这个都会很简单 一个完整的Bean 需要getter和setter方法还需要一个空的构造方法和一个满的构造方法. Dao层: 创建一个接口就ok了 pa ...

  5. mybatis入门百分百

    今天重新返回来看自己的mybatis,总结了一些更好入门的办法,下面用最简单的方法带领大家入门. 此处先引入类包的关系图片 1.构建一个==普通==maven项目 构建好之后向pom.xml添加一下依 ...

  6. Mybatis教程(一)

    1      Mybatis教程(一) 学习过的持久层框架:DBUtils , Hibernate Mybatis就是类似于hibernate的orm持久层框架. 为什么学Mybatis? 目前最主流 ...

  7. 深入浅出MyBatis技术原理与实战

    第1 章 MyBatis 简介..................................................................................... ...

  8. MyBaits框架入门总结

    MBaits简介 联系方式:18873247271(微信同步) 廖先生 qq:1727292697 MyBatis的前身叫iBatis,本是apache的一个开源项目, 2010年这个项目由apach ...

  9. My Baits入门(一)mybaits环境搭建

    1)在工程下引入mybatis-3.4.1.jar包,再引入数据库(mysql,mssql..)包. 2)在src下新建一个配置文件conf.xml <?xml version="1. ...

随机推荐

  1. SQL2005中的事务与锁定(三)- 转载

    ------------------------------------------------------------------------ -- Author : HappyFlyStone  ...

  2. 自定义属性 view

    首先自定义一个圆,相信以前的学习大家都会画圆,在values下写一些自定义的属性 package com.exaple.day01rikao; import android.content.Conte ...

  3. JavaScript encodeURI(), decodeURI(), encodeURIComponent(), decodeURIComponent()

    URI:  Uniform Resource Identifier encodeURI() And decodeURI() The encodeURI() function is used to en ...

  4. 为什么要在html和body加上“height:100%;”

    元素中有内容的时候div才能被撑起来所以我给div加了背景但是也不显示,就是因为没有内容,这个时候的解决办法就是 html,body{ height:100%; }

  5. lipo 合并target为Simulator和Device编译的静态库

    进入项目对应的Build目录后,以下指令: $lipo -create Debug-iphoneos/libSalamaDeveloper.a Debug-iphonesimulator/libSal ...

  6. 2016年12月22日 星期四 --出埃及记 Exodus 21:17

    2016年12月22日 星期四 --出埃及记 Exodus 21:17 "Anyone who curses his father or mother must be put to deat ...

  7. linux定时执行任务

    (1)Linux下如何定时执行php脚本?(2)Linux下如何设置定时任务?(3)Crontab定时执行程序 核心提示:键入 crontab -e 编辑crontab服务文件 分为两种情况:(还有一 ...

  8. 【C++/Qt】Qt中的parent形参

    在 派生类的构造函数初始化列表中 调用 父类的带有参数的构造函数,是为了初始化从父类继承来的成员变量.因为这些变量无法直接初始化,只能采用这种方式初始化. 而在qt中,MainWindow中的某成员变 ...

  9. 选出N个不重复的随机数

    <script type="text/javascript"> var str="0123456789"; var arr=[]; var n; w ...

  10. 3个常用基于Linux系统命令行WEB网站浏览工具(w3m/Links/Lynx)

    一般我们常用的浏览器肯定是基于可视化界面的图文结合的浏览界面效果,比如FireFox.Chrome.Opera等等,但是有些时候折腾和项目 的需要,在Linux环境中需要查看某个页面的文字字符,我们需 ...