Mybatis(二)

一、主配置文件

基本作用就是配置JDBC连接的有关信息,比如URL、用户名、密码等等

二、映射文件

基本作用就是编写SQL语句,同时给每个SQL语句定义一个唯一标识(ID),在程序中通过此ID来调用这条SQL语句。

整个唯一标识sql的id为namespace+id

三、sql的参数传递

1.简单参数

1 <delete id="delete" parameterType="int">
2     delete from t_person where id=#{id} <!—无所谓写什么都可以 à
3 </delete>

2.多个参数:使用Map包装

1 <select id="selectLikeNameAndAgeBetween" parameterType="map" resultType="Person">
2     <include refid="selectBasic"/> where name like #{name} and age between #{age1} and #{age2}
3   </select>
1   SqlSession session = factory.openSession();
2     Map map=new HashMap();
3     map.put("name", "%张%");
4     map.put("age1", 0);
5     map.put("age2", 100);
6     List persons=session.selectList(Person.class.getName()+".selectLikeNameAndAgeBetween",map);
7
8     System.out.println(((Person)(persons.get(0))).getName());
9     session.close();

四、动态sql

1 <select id="selectIf" parameterType="map" resultType="Person">
2     select * from t_person
3     <if test="name !=null">
4       where name like #{name}
5     </if>
6     <if test="age !=0">
7       and age=#{age}
8     </if>
9   </select>

注:如果name==null,则sql拼写错误。。。

 1   <select id="selectWhere" parameterType="map" resultType="Person">
 2     select * from t_person
 3     <where>
 4         <if test="name !=null">
 5            name like #{name}
 6         </if>
 7         <if test="age !=0">
 8           and age=#{age}
 9         </if>
10     </where>
11   </select>

注意where的闭合!!!

choose类似于switch

 1 <select id="selectChoose" parameterType="map" resultType="Person">
 2     select * from t_person
 3     <choose>
 4       <when test="name!=null">
 5          where name like #{name}
 6       </when>
 7       <otherwise>
 8          where name like ‘%%‘
 9       </otherwise>
10     </choose>
11      <if test="age !=0">
12       and age=#{age}
13     </if>
14   </select>

foreach相当于in

1 <select id="selectFor" parameterType="list" resultType="Person">
2     select * from t_person where id in
3     <foreach collection="list" item="p" open="(" close=")" separator=",">
4     #{p}
5     </foreach>
6   </select>
 1   SqlSession session = factory.openSession();
 2     List l=new ArrayList();
 3     l.add(1);
 4     l.add(2);
 5     l.add(3);
 6     l.add(4);
 7     List persons=session.selectList(Person.class.getName()+".selectFor",l);
 8
 9     System.out.println(((Person)(persons.get(1))).getName());
10     session.close();
时间: 2024-10-05 15:30:44

Mybatis(二)的相关文章

Mybatis(二) 全局配置文件详解

这节来说说全局配置文件的东西,非常简单.看一遍就懂了. --WH 一.全部配置内容 SqlMapConfig.xml的配置内容和顺序如下,顺序不能乱.现在来对这些属性的意思一一进行讲解. 二.properties 作用:引用java属性文件中的配置信息,比如,加载连接数据库的各种属性的配置文件. db.properties 1 <!-- 2 properties:引用java属性文件中的配置信息 3 比如加载连接数据库的帐号密码等信息的properties配置文件. 4 使用${}可以引用已经加

mybatis(二)执行CRUD操作的两种方式配置和注解

一.使用MyBatis对表执行CRUD操作——基于XML的实现 1.定义sql映射xml文件 userMapper.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

框架学习笔记之Mybatis(二)

一.动态sql 通过mybatis提供的标签,实现sql语句的拼接. 1.where <select id="findUserList" parameterType="user" resultType="user"> select * from user <!--使用where可以自动处理第一个and--> <where> <if test="id!=null and id!=''"&

mybatis二(参数处理)

1.单个参数 mybatis不会做特殊处理. #{参数名/任意名}:取出参数值. 2.多个参数 mybatis会做特殊处理. 多个参数会被封装成 一个map. key:param1...paramN,或者参数的索引也可以. value:传入的参数值. #{}就是从map中获取指定的key的值: 多个参数传递的时候要使用命名参数的形式: 3.命名参数:明确指定封装参数时map的key:@Param("id") 多个参数会被封装成 一个map, key:使用@Param注解指定的值 val

mybatis(二):config配置

一.properties引入外部配置文件:resource:引入类路径下的资源. <properties resource="dbconfig.properties"></properties> 二.settings包含很多重要的设置项,可以设置是否开启缓存,延迟加载,驼峰命名规则等:name:设置项名:value:false或true. <settings> <setting name="mapUnderscoreToCamelCa

MyBatis(二) resultMap使用

1.问题引出: 在做映射时候,之前,按照表DDL的字段名,设置java对象的属性.但是,在实际应用无法完全保证表字段名与java类属性完全一致,而且java类应该保持驼峰格式的规范风格.对于类似字段user_id等的情况,不能较好的处理.这时,需要使用resultMap标签来将,DDL的字段名和java类属性名一一对应起来. 下面实现一个使用resultMap做映射的实例,来阐述其使用方法: 2.resultMap使用,resultMap和resultType的不同使用场景: 在表的Mapper

Spring整合MyBatis(二)源码分析

在Spring配置Mybatis的文件中我们可以看到如下代码: <!-- 扫描dao --> <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer"> <property name="basePackage" value="org.tarena.note.dao"> </property> MapperScannerConfig

mybatis(二)

这次接着上次写增删改查吧. 现将上节的方法改造一下,改造测试类. package cn.my.test; import java.io.IOException; import java.io.InputStream; import org.apache.ibatis.io.Resources; import org.apache.ibatis.session.SqlSession; import org.apache.ibatis.session.SqlSessionFactory; impor

Mybatis二

1 Mybatis的映射文件 1.1 #和$的区别? 1.1.1 #和$的相同点 都是可以从map中获取值或者pojo对象的值 1.1.2 #和$的不同点 #{}以预编译的形式,将参数设置到sql语句中. ${}取出的值直接拼接在sql语句中,但是可能会有SQL注入问题. 示例: EmployeeMapper.java package com.xuweiwei.mybatis.mapper; import com.xuweiwei.mybatis.pojo.Employee; import or

Mybatis(二)总结

1. 输入映射(就是映射文件中可以传入哪些参数类型) 1)基本类型 2)pojo类型 3)Vo类型2. 输出映射(返回的结果集可以有哪些类型) 1)基本类型 2)pojo类型 3)List类型3. 动态sql:动态的拼接sql语句,因为sql中where条件有可能多也有可能少 1)where:可以自动添加where关键字,还可以去掉第一个条件的and关键字 2)if:判断传入的参数是否为空 3)foreach:循环遍历传入的集合参数 4)sql:封装查询条件,以达到重用的目的 4. 对单个对象的