@RequestBody,@RequestParam,@PathVariable,@Param区别

https://www.cnblogs.com/anywherego/p/9600871.html

 

@Param是mybatis中的注解,用注解来简化xml配置的时候,@Param注解的作用是给参数命名,参数命名后就能根据名字得到参数值,正确的将参数传入sql语句中 。

  1. @Select("select s_id id,s_name name,class_id classid from student where s_name= #{aaaa} and class_id = #{bbbb}")
  2.  
    public Student select(@Param("aaaa") String name,@Param("bbbb")int class_id);
  3.  
posted @ 2020-08-26 10:53  南方卖菜  阅读(157)  评论(0编辑  收藏  举报