码迷,mamicode.com
首页 > 其他好文 > 详细

mybatis - 的使用 (使用配置文件)

时间:2014-10-09 15:38:46      阅读:858      评论:0      收藏:0      [点我收藏+]

标签:mybatis   持久层框架   数据库   


简介:
MyBatis 是支持普通 SQL 查询,存储过程和高级映射的优秀持久层框架。 MyBatis 消除了几乎所有的 JDBC 代码和参数的手工设置以及结果集的检索。MyBatis 使用简单的 XML或注解用于配置和原始映射,将接口和 Java 的 POJOs(Plan  Old  Java  Objects,普通的 Java对象)映射成数据库中的记录。


使用步骤:

1、首先,导入包:
    导入mybatis和其三方的jar包,还有 数据库的 驱动包;

2、然后,写mybatis。xml配置文件:
    @、在类根目录创建mybatis.xml文件,里面的内容是这样子滴:
    (里面需要更改的就是,连接的数据库要素,还有最后的sql映射的配置文件,下一点就说明)
<?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>
<!-- 这个是po类的设置 这样不必在sql中写po类的全限定名 -->
    <typeAliases> <typeAlias alias="Photo" type="com.bjsxt.po.Photo"/> </typeAliases>
<environments default="development">
<environment id="development">
<transactionManager type="JDBC" />
<dataSource type="POOLED">
<property name="driver" value="com.mysql.jdbc.Driver" />
<property name="url" value="jdbc:mysql://localhost/photo" />
<property name="username" value="root" />
<property name="password" value="xiaohang" />
</dataSource>
</environment>
</environments>
<mappers>
<!-- sql 映射文件 这个是对应的配置文件 这个配置文件和dao里面的接口类联系 -->
<mapper resource="com/smallang/dao/PhotoDao.xml" />
</mappers>
</configuration>

3、接着,创建dao和对应xml sql映射文件:

   @、 创建一个接口,里面就是一个或多个方法:比如像这样:
(这个里面就是各种方法,sql语句是放在映射的xml文件里面的,当然这个参数和返回类型是会面)
public interface PhotoDao {
public void savePhoto(Photo photo);
public Photo getPhotoById(int id);
public Photo findPhotoByName(String name,int uid);
// public Photo findPhotoByName2(Map<String, Object> v);
public Photo findPhotoByName2(Photo photo);
public List<Photo> findPhotos();
}
   
@、 创建于类名相同的xml,像这样PhotoDao.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="com.bjsxt.dao.PhotoDao">
<!-- Id :dao中的方法名字 parameterType:方法中传参的类型 -->
<insert id="savePhoto" parameterType="Photo"> <!-- name 代表方法中第一个参数的name属性值 -->
insert into t_photo (name,uploadDate) values (#{name},#{uploadDate})
</insert>
<!-- java中基本数据类型和string 都不需指定类型 parameterType="int" 不要-->
<select id="getPhotoById" resultType="Photo"> <!-- dsfsfs 代表方法中第一个参数的值 -->
select * from t_photo where id=#{dsfsfs}
</select>
<!-- #{和方法中参数的名字无关} {表示第n个参数的值或者其属性的值,或者其key的值}-->
<select id="findPhotoByName" resultType="Photo"> <!-- {}可以使用下标表示n -->
select * from t_photo where name=#{0} and uid=#{1}
</select>
<select id="findPhotoByName2" resultType="Photo"> <!-- {}: map中的key -->
select * from t_photo where name=#{name} and uid=#{uid}
</select>
<!-- resultType表示sql语句执行之后返回的数据类型 -->
<select id="findPhotos" resultType="Photo">
select * from t_photo
</select>
</mapper>
(解释上面的东东:
    绿色:id= 对应的方法名;
    蓝色:parameterType  参数的类型 特殊类必学写
    黄色:sql 的 语句 (里面的#{参数类属性名} 或 #{0,1.。。}下标  来使用参数的数据)
    粉色:resultType = 返回类型    )


然后这里有一个多表查询,返回list<map>d 数据;像这样
<select id="findPhotoName" resultType="map">
select p.name as pn,a.name as an from t_photo as p join t_album a on p.aid=a.id
</select>
public List<Photo> findPhotos();


还有高级的动态SQL(DynamicSQL)的使用,也是在这个,xml里面:
bubuko.com,布布扣这些的东东;
例子:
Foreach的:
foreach元素的属性主要有item,index,collection,open,separator,close。item表示集合中每一个元素进行迭代时的别名,index指定一个名字,用于表示在迭代过程中,每次迭代到的位置,open表示该语句以什么开始,separator表示在每次进行迭代之间以什么符号作为分隔符,close表示以什么结束,在使用foreach的时候最关键的也是最容易出错的就是collection属性,该属性是必须指定的,但是在不同情况下,该属性的值是不一样的,主要有一下3种情况:
  1. 如果传入的是单参数且参数类型是一个List的时候,collection属性值为list
  2. 如果传入的是单参数且参数类型是一个array数组的时候,collection的属性值为array
  3. 如果传入的参数是多个的时候,我们就需要把它们封装成一个Map了,当然单参数也可以封装成map,实际上如果你在传入参数的时候,在MyBatis里面也是会把它封装成一个Map的,map的key就是参数名,所以这个时候collection属性值就是传入的List或array对象在自己封装的map里面的key
public List<Album> findAlbum(List<Integer> ids); 
//list<?> 接口里面的 因为查找包含条件不同,所以需要动态
<select id="findAlbum" resultType="Album">
select * from t_album where id in
<foreach collection="list" item="id" open="(" close=")" separator=",">
#{id}
</foreach>
</select>
If 的例子就不用了;
where的例子有一个:
<select id="findAlbum2" resultType="Album"><!-- 整数不能当成int,而是Integer -->
select * from t_album
<where>
<if test="name!=null">
name=#{name}
</if>
<if test="name !=null and uid!=null">
and
</if>
<if test="uid!=null">
uid=#{uid}
</if>
</where>
</select>
就是如果where 后面有东东的话 就会输出where + 后面的东东 否则 就不输出
choose
choose元素的作用就相当于JAVA中的switch语句,基本上跟JSTL中的choose的作用和用法是一样的,通常都是与when和otherwise搭配的。看如下一个例子:
<select id="dynamicChooseTest" parameterType="Blog" resultType="Blog">
select * from t_blog where 1 = 1
<choose>
<when test="title != null">
and title = #{title}
</when>
<when test="content != null">
and content = #{content}
</when>
<otherwise>
and owner = "owner1"
</otherwise>
</choose>
</select>
trim:
trim元素的主要功能是可以在自己包含的内容前加上某些前缀,也可以在其后加上某些后缀,与之对应的属性是prefix和suffix;可以把包含内容的首部某些内容覆盖,即忽略,也可以把尾部的某些内容覆盖,对应的属性是prefixOverrides和suffixOverrides;正因为trim有这样的功能,所以我们也可以非常简单的利用trim来代替where元素的功能,示例代码如下:
<select id="dynamicTrimTest" parameterType="Blog" resultType="Blog">
select * from t_blog
<trim prefix="where" prefixOverrides="and |or">
<if test="title != null">
title = #{title}
</if>
<if test="content != null">
and content = #{content}
</if>
<if test="owner != null">
or owner = #{owner}
</if>
</trim>
</select>
set:
set元素主要是用在更新操作的时候,它的主要功能和where元素其实是差不多的,主要是在包含的语句前输出一个set,然后如果包含的语句是以逗号结束的话将会把该逗号忽略,如果set包含的内容为空的话则会出错。有了set元素我们就可以动态的更新那些修改了的字段。(如果set中一个条件都不满足,即set中包含的内容为空的时候就会报错。)
这个的例子不copy了,感觉没什么用的;

上面是mybatis的动态sql,在项目中可能会用到,因为使用数据可的时候可能会有各种情况,所以动态的还是很有必要的,这个在注解里面是不能使用的;



这个是这个4、mybatis的使用,下面是测试代码;改改就可以直接使用了,有很多是固定的,(彩色部分是固定的,也是重要的)
@Test
public void test3()throws Exception{
String path="mybatis.xml"; //配置文件(根目录下的)
Reader reader =Resources.getResourceAsReader(path);
SqlSessionFactory sessionFactory =new SqlSessionFactoryBuilder().build(reader);
SqlSession session =sessionFactory.openSession();
AlbumDao albumDao = session.getMapper(AlbumDao.class); //调用的接口(dao里面的java类)
try{
Map<String, Object> map =new HashMap<String, Object>();
map.put("name", "相册2");
// map.put("uid", 1);
System.out.println(albumDao.findAlbum2(map).size()); //这个是调用方法,返回的是sql执行之后的放回结果
}catch (Exception e) {
session.rollback();
e.printStackTrace();
}finally{
session.close();
}
}

注解的使用;
注解的功能,没有配置文件的功能那么多,注解不能使用动态Sql;
注解比较的简单,方便;
下面来几个例子来说明:具体的就看文档吧:
@Update("update t_album set prePath=#{0} ,imgCount=#{1} where id=#{2}")
public void updateAlbum(String prePath,long count,int id);
@Select("select * from t_photo where id=#{dsfds}")
@ResultType(Photo.class)
public Photo getPhotoById(int id);









































mybatis - 的使用 (使用配置文件)

标签:mybatis   持久层框架   数据库   

原文地址:http://blog.csdn.net/xiaohangblog/article/details/39897831

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!