@Param()注解

*基本类型的参数或者String类型,需要加上
*引用类型不需要加
*如果只有一个基本类型,可以忽略,但建议加上

@Select("SELECT * from Table where id = ${id}")
 Enchashment selectUserById(User user);

*在SQL中引用的就是@Param()中设定的属性名

@Select("select column from table where userid = ${userid} ")
    public int selectColumn(@Param("userid") int userid);

上一篇:实战:第一章:防止其他人通过用户的url访问用户私人数据


下一篇:权限管理系统——角色管理模块的问题(2)