码迷,mamicode.com
首页 > 数据库 > 详细

Mybatis 查询传参SQL拼写实例

时间:2017-04-24 23:23:53      阅读:366      评论:0      收藏:0      [点我收藏+]

标签:rom   and   span   mapper   where   注意   order by   poj   ring   

1、在对应的***Mapper.java里面写上对应的方法(着重注意参数)

java.util.List<com.thunisoft.sjzljc.pojo.TTjfxWsgz> selectZjxqList(@Param("cbhgzdy")String cbhgzdy,@Param("cropid")String cropid);

2、对应的***Mapper.xml中SQL的拼写

<select id="selectZjxqList" resultMap="BaseResultMap">
select c_ah,c_wsmc,c_bh_ws
from {db.t_tjfx_wsgz}
where c_bh_gzdy = #{cbhgzdy}
<if test="cropid !=null">
and c_bh_dw3 in ( ${cropid} )
</if>
order by c_ah
</select>

 

注意:参数前面有#号和$符号之分,他们的区别是,#号有防止SQL注入的功能,会对参数进行一些处理,但是$符号是获取你原始传过来的值

Mybatis 查询传参SQL拼写实例

标签:rom   and   span   mapper   where   注意   order by   poj   ring   

原文地址:http://www.cnblogs.com/latter/p/6759066.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!