转载:http://blog.csdn.net/ppby2002/article/details/20611737

<?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.lee.UserMapper">

<!--返回单一对象-->
  <select id="selectName" resultType="com.lee.User">
    <![CDATA[ 
      select user_name userName from user_table where user_id = #{userId}     
    ]]>
  </select>

<!--返回结果格式 Map<字段名称,字段值>-->
  <select id="selectByName" resultType="hashMap" parameterType="string">
      <![CDATA[
          SELECT * from user_table where user_name=#{userName}
     ]]>      
  </select>
  
  <!--调用存储过程-->
  <select id="selectUserFromStoreProcedure" statementType="CALLABLE">
    <![CDATA[
       {call my_pack.my_proc(
           #{userId,mode=IN,jdbcType=VARCHAR,javaType=string},
           #{userName,mode=OUT,jdbcType=FLOAT,javaType=string})}
       ]]>
  </select>

<!--返回List<User>-->
  <select id="selectUsers" resultType="com.lee.User">   
        <![CDATA[ 
      select user_id userId, user_name userName from user_table
     ]]>
  </select>
  
  <!--重用sql-->
  <sql id="subQuery">   
      <![CDATA[  
         WITH MY_SUB_QUERY as (
        select 'lee' as user_name, '1' as user_id from dual 
        union select 'lee1' ,'2' from dual
      )
    ]]>
  </sql>
  
  <!--动态sql-->
  <sql id="selectOther">
    <include refid="subQuery" />        
        <![CDATA[ 
        SELECT t.other_id otherId, t.other_name otherName, t.other_flag otherFlag FROM OtherTable t
            INNER JOIN MY_SUB_QUERY mapper ON mapper.user_id = t.user_id 
     ]]>
    <if test="filterFlag==true">  
            <![CDATA[
              and t.other_flag = 'Y'
            ]]>
    </if>
    <!--
    另一个if段
    <if test="flag1==true">  
      ...
    </if>
    -->
<!--
使用choose语句,flag1是从mapper方法中传递的参数,如 @Param("flag1") String flag1
    <choose>
      <when test="flag1 == 'Y'">
        t1.flag1 AS flag
        FROM table1 t1
      </when>
      <otherwise>
        t2.flag2 AS flag
        FROM table2 t2
      </otherwise>
    </choose>  
  -->
  </sql>
  
  <!--返回数字-->
  <select id="selectCount" resultType="java.lang.Long">       
        <![CDATA[   
          SELECT count(*) FROM user_table
        ]]>
  </select>
  
  <!--Map参数, 格式Map<参数名称,参数值>-->
  <select id="selectUser"  parameterType="java.util.HashMap" resultType="com.lee.User">
    <![CDATA[     
            SELECT user_id userId, user_name userName from user_table
          where user_id=#{userId} and user_name = #{userName}
        ]]>
  </select>
</mapper>

--------------------------------------------------这个分割线的作用是要显示下边的Java对象例子--------------------------------------------------
public class User {
  private int userId;
  private String userName;
  public String getUserId() {return userId}
  public void setUserId(int userId) {this.userId=userId}
  public String getUserName() {return userName}
  public void setUserName(String userName) {this.userName=userName}
}
--------------------------------------------------这个分割线的作用是要显示下边的Mapper对象例子--------------------------------------------------
@Repository
public interface UserMapper {  
  public User selectName(@Param("userId") String userId);
  public List<Map<String,Object>> selectByName(@Param("userName")String userName);
  <!--Map<字段名称,字段值>-->
  public void selectUserFromStoreProcedure(Map<String,Object> map);
  public List<User> selectUsers();
  public OtherUser selectOther();
  public int selectCount();
  public User selectUser(Map<String,Object> map);
}
--------------------------------------------------这个分割线的作用是要显示另一些配置例子--------------------------------------------------
<!--用映射配置查询sql-->
<resultMap id="UserMap" type="com.lee.User">
  <result column="user_id" property="userId"/>
  <result column="user_name" property="userName"/>
</resultMap>
<select id="selectName" resultMap="UserMap">
  <![CDATA[ 
    select user_name from user_table where user_id = #{userId}     
  ]]>
</select>

<!--重用映射配置并连接到其它结果集查询-->
<resultMap id="OtherUserMap" type="com.lee.OtherUser" extends="UserMap">
    <!--多个查询条件用逗号隔开,如userId=user_id,userName=user_name-->
    <collection property="ownedItems" select="selectItems" column="userId=user_id"/> 
</resultMap>
<select id="selectItems" resultType="com.lee.UserItem">   
  SELECT * FROM user_item_table WHERE user_id = #{userId}
</select>

public class OtherUser extends User {
  private List<UserItem> ownedItems;
  public List<UserItem> getOwnedItems() {return ownedItems}
  public void setOwnedItems(List<UserItem> userId) {this.ownedItems=ownedItems}
}
--------------------------------------------------这个分割线的作用是要显示另一个重用子查询配置例子--------------------------------------------------
<mapper namespace="mapper.namespace">
  <sql id="selectTable1">
    <![CDATA[       
      select f1, f2, f3 from table1 where 1=1
    ]]> 
  </sql>
  <select id="getStandardAgents" resultMap="StandardAgent">   
     <include refid="mapper.namespace.selectTable1"/>
     <![CDATA[             
      and f1 = 'abc'
     ]]>      
  </select>
</mapper>
--------------------------------------------------这个分割线的作用是要显示insert/update/delete配置例子--------------------------------------------------
<!--从Oracle序列中产生user_id, jdbcType=VARCHAR用于插入空值-->
<insert id="insertUser" parameterType="com.lee.User">
  <selectKey keyProperty="user_id" resultType="string" order="BEFORE">
    select db_seq.nextval as user_id from dual
  </selectKey>
  INSERT INTO 
    user_table(
      user_id,
      user_name,
    ) VALUES(
      #{user_id},
      #{user_name,jdbcType=VARCHAR}
    )
</insert>

<update id="updateUser" parameterType="com.lee.User">
  UPDATE user_table
    SET user_name = #{userName,jdbcType=VARCHAR},
  WHERE
    user_id = #{userId}
</update>

<delete id="deleteUser" parameterType="com.lee.User">
  DELETE user_table WHERE user_id = #{userId} 
</delete>

MyBatis Mapper 文件例子的更多相关文章

  1. MyBatis mapper文件中的变量引用方式#{}与${}的差别

    MyBatis mapper文件中的变量引用方式#{}与${}的差别 #{},和 ${}传参的区别如下:使用#传入参数是,sql语句解析是会加上"",当成字符串来解析,这样相比于$ ...

  2. [DB][mybatis]MyBatis mapper文件引用变量#{}与${}差异

    MyBatis mapper文件引用变量#{}与${}差异 默认,使用#{}语法,MyBatis会产生PreparedStatement中.而且安全的设置PreparedStatement參数,这个过 ...

  3. intellij idea 插件开发--快速定位到mybatis mapper文件中的sql

    intellij idea 提供了openApi,通过openApi我们可以自己开发插件,提高工作效率.这边直接贴个链接,可以搭个入门的demo:http://www.jianshu.com/p/24 ...

  4. mybatis mapper文件sql语句传入hashmap参数

    1.怎样在mybatis mapper文件sql语句传入hashmap参数? 答:直接这样写map就可以 <select id="selectTeacher" paramet ...

  5. ][mybatis]MyBatis mapper文件中的变量引用方式#{}与${}的差别

    转自https://blog.csdn.net/szwangdf/article/details/26714603 MyBatis mapper文件中的变量引用方式#{}与${}的差别 默认情况下,使 ...

  6. MyBatis mapper文件中使用常量

    MyBatis mapper文件中使用常量 Java 开发中会经常写一些静态常量和静态方法,但是我们在写sql语句的时候会经常用到判断是否等于 //静态类 public class CommonCod ...

  7. Mybatis mapper文件占位符设置默认值

    如果要设置占位符默认值的话:需要进行 设置 org.apache.ibatis.parsing.PropertyParser.enable-default-value 属性为true启用占位符默认值处 ...

  8. 自己挖的坑自己填--Mybatis mapper文件if标签中number类型及String类型的坑

    1.现象描述 (1)使用 Mybatis 在进行数据更新时,大部分时候update语句都需要通过动态SQL进行拼接.在其中,if标签中经常会有 xxx !='' 这种判断,若 number 类型的字段 ...

  9. Mybatis mapper文件中的转义方法

    在mybatis中的sql文件中对于大于等于或小于等于是不能直接写?=或者<=的,需要进行转义,目前有两种方式: 1.通过符号转义: 转义字符       <     <   小于号 ...

随机推荐

  1. (IIS8/8.5/Apache)301域名重定向

    用Apache的.htaccess来做301域名转向1.开启apache支持.htaccess,方法:在Apache的配置文件httpd.conf中,找到<Directory />    ...

  2. sqlserver中distinct的用法(不重复的记录)

    下面先来看看例子: table表 字段1     字段2   id        name   1           a   2           b   3           c   4    ...

  3. 第29章 项目10:DIY街机游戏

    1.问题 "Self-Defense Against Fresh Fruit":军士长指挥自己的士兵使用自我防御战术对抗以石榴.芒果.青梅和香蕉等新鲜水果入侵者.防御战术包括使用枪 ...

  4. 简单好用的 AJAX 上传插件,还可以抛弃难看的 file 按钮哦~

    在做网页设计的时候,设计师常常会把上传按钮设计得非常漂亮,还用了什么放大镜之类的图标来表达 browse 的效果.可是她们不知道,type="file" 的按钮在不同浏览器上的效果 ...

  5. 爬虫组NABC

    Need(需求): 我们小组的研究课题是编写一个更实用的爬虫软件,编写时会应用到学长的部分代码并在其基础上完善创新. 鉴于学长代码已经实现了基本功能,即从网站上面爬取相关的Word文档等与计算机有关的 ...

  6. 最火的.NET开源项目(转)

    综合类 微软企业库 微软官方出品,是为了协助开发商解决企业级应用开发过程中所面临的一系列共性的问题, 如安全(Security).日志(Logging).数据访问(Data Access).配置管理( ...

  7. 例题-文件系统的放大 (LVM):

    纯粹假设的,我们的 /home 不够用了,你想要将 /home 放大到 7GB 可不可行啊? 答: 因为当初就担心这个问题,所以 /home 已经是 LVM 的方式来管理了.此时我们要来瞧瞧 VG 够 ...

  8. 2014 Multi-University Training Contest 3

    官方解题报告http://blog.sina.com.cn/s/blog_a19ad7a10102uyiq.html Wow! Such Sequence! http://acm.hdu.edu.cn ...

  9. SQL Server 之 解锁

    下图,制作了一个可以维持1分钟的表锁: 下图,可以查询出被锁的表,其中 spid 是锁定表的进程ID(也是 session_id): 可以通过 select connect_time from sys ...

  10. 【Asp.Net MVC--资料汇总】杂七杂八

    Html.RenderPartial与Html.RenderAction的区别 http://blog.sina.com.cn/s/blog_8278b1800100zkn0.html ASP.NET ...