param
解析1
实例一 @Param注解单一属性
dao层示例
Public User selectUser(@param(“userName”) String name,@param(“userpassword”) String password);
xml映射对应示例
- <select id=" selectUser" resultMap="BaseResultMap">
- select * from user_user_t where user_name = #{userName,jdbcType=VARCHAR} and user_password=#{userPassword,jdbcType=VARCHAR}
- </select>
注意:采用#{}的方式把@Param注解括号内的参数进行引用(括号内参数对应的是形参如 userName对应的是name);
实例二 @Param注解javaBean对象
dao层示例
public List<user> getUserInformation(@Param("user") User user);
xml映射对应示例
- <select id="getUserInformation" parameterType="com.github.demo.vo.User" resultMap="userMAPPer">
- select
- <include refid="User_Base_Column_List" />
- from mo_user t where 1=1
- <!-- 因为传进来的是对象所以这样写是取不到值得 -->
- <if test="user.userName!=null and user.userName!=''"> and t.user_name = #{user.userName} </if>
- <if test="user.userAge!=null and user.userAge!=''"> and t.user_age = #{user.userAge} </if>
- </select>
以下内容为摘录内容:源于 冲吧,不要停! 如有侵权,请通知作者,及时删除~~~
1,使用@Param注解
当以下面的方式进行写sql语句时:
@Select("select column from table where userid = #{userid} ")
public int selectColumn(int userid);
当你使用了使用@Param注解来声明参数时,如果使用 #{} 或 ${} 的方式都可以。
@Select("select column from table where userid = ${userid} ")
public int selectColumn(@Param("userid") int userid);
当你不使用@Param注解来声明参数时,必须使用使用 #{}方式。如果使用 ${} 的方式,会报错。
@Select("select column from table where userid = ${userid} ")
public int selectColumn(@Param("userid") int userid);
2,不使用@Param注解
不使用@Param注解时,参数只能有一个,并且是Javabean。在SQL语句里可以引用JavaBean的属性,而且只能引用JavaBean的属性。
// 这里id是user的属性
@Select("SELECT * from Table where id = ${id}")
Enchashment selectUserById(User user);
解析2
https://www.cnblogs.com/thomas12112406/p/6217211.html
用注解来简化xml配置的时候,@Param注解的作用是给参数命名,参数命名后就能根据名字得到参数值,正确的将参数传入sql语句中
我们先来看Mapper接口中的@Select方法
1 2 3 4 5 6 7 8 9 10 11 12 13 |
package Mapper;
public interface Mapper {
@Select("select s_id id,s_name name,class_id classid from student where s_name= #{aaaa} and class_id = #{bbbb}") public Student select(@Param("aaaa") String name,@Param("bbbb")int class_id);
@Delete......
@Insert...... } |
这里解释一下
1.@Select(....)注解的作用就是告诉myBATis框架,执行括号内的sql语句
2.s_id id,s_name name,class_id classid 格式是 字段名+属性名,例如s_id是数据库中的字段名,id是类中的属性名
这段代码的作用就是实现数据库字段名和实体类属性的一一映射,不然数据库不知道如何匹配
3.where s_name= #{aaaa} and class_id = #{bbbb} 表示sql语句要接受2个参数,一个参数名是aaaa,一个参数名是bbbb,如果要正确的传入参数,那么就要给参数命名,因为不用xml配置文件,那么我们就要用别的方式来给参数命名,这个方式就是@Param注解
4.在方法参数的前面写上@Param("参数名"),表示给参数命名,名称就是括号中的内容
public Student select(@Param("aaaa") String name,@Param("bbbb")int class_id);
给入参 String name 命名为aaaa,然后sql语句....where s_name= #{aaaa} 中就可以根据aaaa得到参数值了
相关阅读
SSM框架SpringMVC@Scheduled注解简单实现定时任务
第一步: 在Springmvc的xml中加入如下:xmlns:task="http://www.springframework.org/schema/task"http://www.springfr
前面一篇,我们介绍了三种带参数的请求类型划分。这篇,介绍通过github上的API,来举例一个params参数接口的演示。先找到如下图位置
其实这个LayoutParams类是用于child view(子视图) 向 parent view(父视图)传达自己的意愿的一个东西(孩子想变成什么样向其父亲说明)
request的getAttribute()和getParameter()的区别
本质上的区别request.getAttribute(): 总体来说这个getAttribute() 是在页面中获取后台传递来的数据这个getAttribute() 配套的
request.getParameter("key")获取不到值得原因
客户端发送请求代码片段:import org.apache.commons.lang3.StringUtils; import org.apache.http.HttpEntity; import org.apache