博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
mybatis中@Param的使用
阅读量:4964 次
发布时间:2019-06-12

本文共 1007 字,大约阅读时间需要 3 分钟。

@Param:当映射器方法需要多个参数时,这个注解可以被用于:给映射器方法中的每个参数来取一个名字。否则,多参数将会以它们的顺序位置和SQL语句中的表达式进行映射,这是默认的。

       语法要求:若使用@Param("id"),则SQL中参数应该被命名为:#{id}。

用代码说明:

import org.apache.ibatis.annotations.Delete;import org.apache.ibatis.annotations.Param;import org.apache.ibatis.annotations.Select;import com.game.domain.User;/** * UserMapper接口 */public interface UserMapper {        //根据用户的用户名、密码判断登录    @Select("select * from user where userName = #{UserName} and userPwd = #{UserPwd}")    User findWithLoginnameAndPassword(@Param("UserName")String Name,            @Param("UserPwd") String Pwd);        //根据id删除用户    @Delete(" delete from user where userID = #{id}")    void deleteById(@Param("id") Integer ID);

 

这里:@Param("UserName")注解表示给该注解后面的参数(String Name)取一个参数名称(命名为UserName),对应@Select注解中的#{UserName}。

   如果没有使用@Param注解,则参数将会以它们的顺序位置来和SQL语句中的表达式进行映射。
   然后sql语句:select * from user where userName = #{UserName} and userPwd = #{UserPwd}中,就可以根据"UserName"和"UserPwd"得到参数值了。

转载于:https://www.cnblogs.com/zeroingToOne/p/8759544.html

你可能感兴趣的文章
iOS7自定义statusbar和navigationbar的若干问题
查看>>
[Locked] Wiggle Sort
查看>>
deque
查看>>
Setting up a Passive FTP Server in Windows Azure VM(ReplyCode: 227, Entering Passive Mode )
查看>>
Python模块调用
查看>>
委托的调用
查看>>
c#中从string数组转换到int数组
查看>>
数据模型(LP32 ILP32 LP64 LLP64 ILP64 )
查看>>
java小技巧
查看>>
POJ 3204 Ikki's Story I - Road Reconstruction
查看>>
【BZOJ】2959: 长跑(lct+缩点)(暂时弃坑)
查看>>
iOS 加载图片选择imageNamed 方法还是 imageWithContentsOfFile?
查看>>
toad for oracle中文显示乱码
查看>>
SQL中Group By的使用
查看>>
错误org/aopalliance/intercept/MethodInterceptor解决方法
查看>>
Pylint在项目中的使用
查看>>
使用nginx做反向代理和负载均衡效果图
查看>>
access remote libvirtd
查看>>
(4) Orchard 开发之 Page 的信息存在哪?
查看>>
ASP.NET中 GridView(网格视图)的使用前台绑定
查看>>