MyBatis第二天
1.学习目标
- 复习mybatis的使用
- 掌握mybatis中的动态SQL标签
- 基于xml配置的增删改查
- 在配置文件中#{}与${}的区别
- 掌握ResultMap的使用
- SqlMapConfig运用
2. Mybatis 的动态 SQL 语句
Mybatis 的映射文件中,前面我们的 SQL 都是比较简单的,有些时候业务逻辑复杂时,我们的 SQL 是动态变 化的,此时在前面的学习中我们的 SQL 就不能满足要求了。 参考的官方文档,描述如下:
2.1 动态 SQL 之标签 if
我们根据实体类的不同取值,使用不同的 SQL 语句来进行查询。比如在 id 如果不为空时可以根据 id 查询, 如果 username 不同空时还要加入用户名作为条件。这种情况在我们的多条件组合查询中经常会碰到。
以修改一条记录为例子:
以前学习jdbctemplate的时候可以通过if+else实现的
int updata(User user){ DataSource ds = JDBCUtil.getDataSource(); JDBCTemplate jt = new JDBCTemplate(ds) //获取必要的参数 String username = user.getUserName(); String password = user.getPassWord(); int id = user.getId(); //拼接动态sql StringBuffer sql = new StringBuffer(); try{ sql.append("update tb_user set "); if(username != null){ sql.append("username = "+username); } if(password != null){ sql.append(",password = "+password) } sql.append(" where id = "+id); String s = sql.toString(); .... }catch(Exception e){ e.printStackTrace(); return null; } }
那么MyBatis是如何实现类似Java代码那样的动态拼接呢?
此时的java代码就可以简化成这样:
/** * 根据用户信息,查询用户列表 * @param user * @return */
List<User> findByUser(User user);
xml中写法:
<select id="findByUser" resultType="user" parameterType="user">
select * from user where 1=1
<if test="username!=null and username != '' ">
and username like concat('%',#{username},'%')
</if>
<if test="address != null">
and address like concat('%',#{address},'%')
</if>
</select>
注意:<if>标签的 test 属性中写的是对象的属性名,如果是包装类的对象要使用 OGNL 表达式的写法。
另外要注意 where 1=1 的作用!
2.2 动态 SQL 之where标签
为了简化上面 where 1=1 的条件拼装,我们可以采用标签来简化开发。
2.2.1 持久层Dao映射配置
<!-- 根据用户信息查询 -->
<select id="findByUser" resultType="user" parameterType="user">
<include refid="defaultSql"></include>
<where>
<if test="username!=null and username != '' ">
and username like #{username}
</if>
<if test="address != null">
and address like #{address}
</if>
</where>
</select>
2.3 动态标签之foreach标签
2.3.1 需求产生
传入多个 id 查询用户信息,用下边两个 sql 实现:
SELECT * FROM USERS WHERE username LIKE ‘%张%’ AND (id =10 OR id =89 OR id=16)
SELECT * FROM USERS WHERE username LIKE ‘%张%’ AND id IN (10,89,16)
这样我们在进行范围查询时,就要将一个集合中的值,作为参数动态添加进来。
这样我们将如何进行参数的传递?
这个时候我们可以传入一个list集合
2.3.2 xml 配置
<!-- 查询所有用户在 id 的集合之中 -->
<select id="findInIds" resultType="user" parameterType="queryvo">
<!-- select * from user where id in (1,2,3,4,5); -->
<include refid="defaultSql"></include>
<where>
<if test="ids != null and ids.size() > 0">
<foreach collection="ids" open="id in ( " close=")" item="uid" separator=",">
#{uid}
</foreach>
</if>
</where>
</select>
SQL 语句:
select 字段 from user where id in (?)
<foreach>标签用于遍历集合,它的属性:
collection:代表要遍历的集合元素,注意编写时不要写#{}
open:代表语句的开始部分
close:代表结束部分
2.4 Mybatis 中简化编写的 SQL 片段
Sql 中可将重复的 sql 提取出来,使用时用 include 引用即可,最终达到 sql 重用的目的。
2.4.1 定义代码片段
<!-- 抽取重复的语句代码片段 -->
<sql id="defaultSql">
select * from user
</sql>
2.4.2 引用代码片段
<!-- 配置查询所有操作 -->
<select id="findAll" resultType="user">
<include refid="defaultSql"></include>
</select>
<!-- 根据 id 查询 -->
<select id="findById" resultType="UsEr" parameterType="int">
<include refid="defaultSql"></include>
where id = #{uid}
</select>
3.基于XML的增删改查
在原生的JDBC中我们通过手写sql语句和jdbctemplate中的方法来获取对应的操作
使用mybatis也可以实现同样的操作
主要有这么几个标签:
<select></select>
一般用于查询的语句,等同于select开头的所有语句
<update></update>
用于更新操作,等同于update语句
<delete></delete>
用于删除操作,等同于delete语句
<insert></insert>
用于新增操作,等同于insert语句
例如我们需要查询记录:
<select>
select * from tb_user
</select>
更新:
<update>
update tb_user set .... where id = ...
</update>
删除:
<delete>
delete tb_user where id = ...
</delete>
新增:
<insert>
insert into tb_user values(....)
</insert>
那么我们注意到,上面的例子中缺少了返回结果类型(resultType)和 id
id和resultType是用来做什么的呢?
id:用于对应接口中的方法名,一定不能写错,严格区分大小写
resultType:用于封装成指定的类型,一般写全限定类名
4.#{}和${}的区别
#{}:表示一个占位符号 通过#{}可以实现 preparedStatement 向占位符中设置值,自动进行 java 类型和 jdbc 类型转换, #{}可以有效防止 sql 注入。
#{}可以接收简单类型值或 pojo 属性值。 如果 parameterType 传输单个简单类 型值,#{}括号中可以是 value 或其它名称。
${}:表示拼接 sql 串 通过${}可以将 parameterType 传入的内容拼接在 sql 中且不进行 jdbc 类型转换, ${}可以接收简 单类型值或 pojo 属性值,如果parameterType 传输单个简单类型值,${}括号中只能是 value。
值得注意的是:#{}是我们最常用的,而${}一般是传确定值,例如表名称或字段
5.ResultMap的用法
resultMap 标签可以建立查询的列名和实体类的属性名称不一致时建立对应关系。
从而实现封装。 在 select 标签中使用 resultMap 属性指定引用即可。
同时 resultMap 可以实现将查询结果映射为复杂类型的 pojo,比如在查询结果映射对象中包括 pojo 和 list 实现一对一查询和一对多查询。
实际的案例
- 定义resultMap
<!-- 建立 User 实体和数据库表的对应关系type 属性:指定实体类的全限定类名 id 属性:给定一个唯一标识,是给查询 select 标签引用用的。 --> <resultMap type="com.bianyi.domain.User" id="userMap"> <id column="id" property="userId"/> <result column="username" property="userName"/> <result column="sex" property="userSex"/> <result column="address" property="userAddress"/> <result column="birthday" property="userBirthday"/> </resultMap> id 标签:用于指定主键字段 result 标签:用于指定非主键字段 column 属性:用于指定数据库列名 property 属性:用于指定实体类属性名称
- 配置映射
<!-- 配置查询所有操作 --> <select id="findAll" resultMap="userMap"> select * from user </select>
- 运行测试
@Test public void testFindAll() { List<User> users = userDao.findAll(); for(User user : users) { System.out.println(user); } }
6.SqlMapConfig运用
6.1 SqlMapConfig.xml 中配置的内容和顺序
-properties(属性)
--property
-settings(全局配置参数)
--setting -typeAliases(类型别名)
--typeAliase --package -typeHandlers(类型处理器)
-objectFactory(对象工厂)
-plugins(插件)
-environments(环境集合属性对象)
--environment(环境子属性对象)
—transactionManager(事务管理)
—dataSource(数据源)
-mappers(映射器)
--mapper
--package
6.2 properties(属性)
在使用 properties 标签配置时,我们可以采用两种方式指定属性配置。
6.2.1 第一种
<properties>
<property name="jdbc.driver" value="com.mysql.jdbc.Driver"/>
<property name="jdbc.url" value="jdbc:mysql://localhost:3306/eesy"/>
<property name="jdbc.username" value="root"/>
<property name="jdbc.password" value="1234"/>
</properties>
6.2.2 第二种
在 classpath 下定义 db.properties 文件
jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/test
jdbc.username=root
jdbc.password=1234
properties 标签配置
<!-- 配置连接数据库的信息 resource 属性:用于指定 properties 配置文件的位置,要求配置文件必须在类路径下 resource="jdbcConfig.properties" url 属性: URL: Uniform Resource Locator 统一资源定位符 http://localhost:8080/mystroe/CategoryServlet URL 协议 主机 端口 URI URI:Uniform Resource Identifier 统一资源标识符 /mystroe/CategoryServlet 它是可以在 web 应用中唯一定位一个资源的路径 -->
<properties url="[这里使用绝对路径]">
</properties>
此时我们的 dataSource 标签就变成了引用上面的配置
<dataSource type="POOLED">
<property name="driver" value="${jdbc.driver}"/>
<property name="url" value="${jdbc.url}"/>
<property name="username" value="${jdbc.username}"/>
<property name="password" value="${jdbc.password}"/>
</dataSource>
6.3 typeAliases(类型别名)
由于windows中的MySQL是不区分大小写的,所以目前无法演示别名的作用
别名可以让我们省略较长的全限定类名,转而使用类的名称,首字母大写小写均可
在SqlMapConfig中配置
<typeAliases>
<!-- 单个别名定义 -->
<typeAlias alias="user" type="com.bianyi.domain.User"/>
<!-- 批量别名定义,扫描整个包下的类,别名为类名(首字母大写或小写都可以) -->
<package name="com.bianyi.domain"/>
<package name="其它包"/>
</typeAliases>
6.4 mappers(映射器)
6.4.1 <mapper resource=" " />
使用相对于类路径的资源
如:
6.4.2 <mapper class=" " />
使用 mapper 接口类路径
如:
注意:此种方法要求 mapper 接口名称和 mapper 映射文件名称相同,且放在同一个目录中。
6.4.3 <package name=" "/>
注册指定包下的所有 mapper 接口
如:
注意:此种方法要求 mapper 接口名称和 mapper 映射文件名称相同,且放在同一个目录中(在resources文件夹中)。