mybatis:sql传参

mybatis:sql传参

导航

回到mybatis导航页

目录结构

目录结构

单个参数

<?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="goods">
    <select id="selectById"
            parameterType="integer"
            resultType="com.torey.mybatis.entity.TGoodsEntity">
   SELECT * FROM t_goods where goods_id=#{id}
    </select>
</mapper>
@Test
    public void testSelectById() throws Exception {
        SqlSession sqlSession = null;
        try {
            sqlSession = MyBatisUtils.openSession();
            TGoodsEntity objects = sqlSession.selectOne("goods.selectById",748);
            System.out.println(objects);
        } catch (Exception ex) {
            throw ex;
        } finally {
            MyBatisUtils.closeSession(sqlSession);
        }
    }

多个参数

<?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="goods">
    <select id="selectByMap"
            parameterType="java.util.Map"
            resultType="com.torey.mybatis.entity.TGoodsEntity">
   SELECT * FROM t_goods
   where   current_Price between #{min} and #{max}
   order by current_Price
   limit 0,#{limit}
    </select>
</mapper>
@Test
public void selectByMap() throws Exception {
    SqlSession sqlSession = null;
    try {
        sqlSession = MyBatisUtils.openSession();
        Map<String,Object> objectMap=new HashMap<String, Object>();
        objectMap.put("min",10);
        objectMap.put("max",50);
        objectMap.put("limit",3);
        List<TGoodsEntity> objects =
                sqlSession.selectList("goods.selectByMap",objectMap);
        for (TGoodsEntity object : objects) {
            System.out.println(object.toString());
        }
    } catch (Exception ex) {
        throw ex;
    } finally {
        MyBatisUtils.closeSession(sqlSession);
    }
}

导航,上一页,下一页

4MyBatis数据查询

9MyBatis预防SQL注入攻击

支持我-微信扫一扫-加入微信公众号

Aseven公众号

赞赏作者

赞赏作者
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值