MyBatis Mapper 文件例子
转载: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 文件例子的更多相关文章
- MyBatis mapper文件中的变量引用方式#{}与${}的差别
MyBatis mapper文件中的变量引用方式#{}与${}的差别 #{},和 ${}传参的区别如下:使用#传入参数是,sql语句解析是会加上"",当成字符串来解析,这样相比于$ ...
- [DB][mybatis]MyBatis mapper文件引用变量#{}与${}差异
MyBatis mapper文件引用变量#{}与${}差异 默认,使用#{}语法,MyBatis会产生PreparedStatement中.而且安全的设置PreparedStatement參数,这个过 ...
- intellij idea 插件开发--快速定位到mybatis mapper文件中的sql
intellij idea 提供了openApi,通过openApi我们可以自己开发插件,提高工作效率.这边直接贴个链接,可以搭个入门的demo:http://www.jianshu.com/p/24 ...
- mybatis mapper文件sql语句传入hashmap参数
1.怎样在mybatis mapper文件sql语句传入hashmap参数? 答:直接这样写map就可以 <select id="selectTeacher" paramet ...
- ][mybatis]MyBatis mapper文件中的变量引用方式#{}与${}的差别
转自https://blog.csdn.net/szwangdf/article/details/26714603 MyBatis mapper文件中的变量引用方式#{}与${}的差别 默认情况下,使 ...
- MyBatis mapper文件中使用常量
MyBatis mapper文件中使用常量 Java 开发中会经常写一些静态常量和静态方法,但是我们在写sql语句的时候会经常用到判断是否等于 //静态类 public class CommonCod ...
- Mybatis mapper文件占位符设置默认值
如果要设置占位符默认值的话:需要进行 设置 org.apache.ibatis.parsing.PropertyParser.enable-default-value 属性为true启用占位符默认值处 ...
- 自己挖的坑自己填--Mybatis mapper文件if标签中number类型及String类型的坑
1.现象描述 (1)使用 Mybatis 在进行数据更新时,大部分时候update语句都需要通过动态SQL进行拼接.在其中,if标签中经常会有 xxx !='' 这种判断,若 number 类型的字段 ...
- Mybatis mapper文件中的转义方法
在mybatis中的sql文件中对于大于等于或小于等于是不能直接写?=或者<=的,需要进行转义,目前有两种方式: 1.通过符号转义: 转义字符 < < 小于号 ...
随机推荐
- DataGridview动态添加列
1.获取数据源(select * from table名称) 2.动态绑定数据源 private void GetTableInfo(DataTable dt) { listBh = new List ...
- python 快速入门
根据以下几个步骤来快速了解一下python,目标是可以利用python来处理一些简易的问题或者写一些工具. 1.编写Hello world 2.学习 if,while,for 的语法 3.学习该语 ...
- 从省市区多重级联想到的,react和jquery的差别
在我们的前端项目里经常会用到级联的select,比如省市区这样.通常这种级联大多是动态的.比如先加载了省,点击省加载市,点击市加载区.然后数据通常ajax返回.如果没有数据则说明到了叶子节点. 针 ...
- 启动另外一个activity,并返回结果
欢迎大家光临我的小店:http://clkk.taobao.com 大致步骤: 1.启动另外一个Activity,这里称子Activity: 2.子Activity通过setResult方法设置返回结 ...
- 百度云demo2
- 常用设备类别及其GUID
Class ClassGuid 说明 1394 6BDD1FC1-810F-11D0-BEC7-08002BE2092F 1394主控制器 CDROM 4D36E965-E325-11CE-BFC1- ...
- 腾讯WEB前端开发三轮面试经历及面试题
[一面]~=110分钟 2013/04/24 11:20 星期三 进门静坐30分钟做题. 填空题+大题+问答题 >>填空题何时接触电脑 何时接触前端运算符 字符串处理 延 ...
- 查看MYSQL数据库中所有用户及拥有权限
查看MYSQL数据库中所有用户 mysql> SELECT DISTINCT CONCAT('User: ''',user,'''@''',host,''';') AS query FROM m ...
- phpcms v9后台登陆验证码无法显示,怎么取消验证码
phpcms v9后台登陆验证码无法显示论坛里关于这个问题貌似一直没有解决,查看源代码后发现,关键一点是获取验证码的图片与全局变量SITE_URL相关,也就是网站的目录, 所以只要修改cache/co ...
- NET
NET狂官方面试题-数据库篇答案 题目:http://www.cnblogs.com/dunitian/p/6028838.html 汇总:http://www.cnblogs.com/dunit ...