博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
3.3.5 查询的参数传递
阅读量:5221 次
发布时间:2019-06-14

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

五、查询的参数传递

如果执行的是条件查询, 需要在调用方法时传参数进来, 此时, 可以在 select 标签中通过 parameterType 属性指定参数的类型. 而在 SQL 语句中, 可以通过#{} 的方式获取参数. 

1. 一个参数的查询

例如, 根据 id 查询用户信息. 当只有一个参数时, #{} 中可以任意填写.

<!-- parameterType, 参数类型, 用于参数的传递 -->

<select id="selById" resultType="user" parameterType="int">

<!--

#{}用于获取参数

index, 索引 , 0开始 param+数字, param1, param2

-->

select * from t_user where id=#{param1}

</select>

@Test

public void selById() {

SqlSession session = null;

try {

session = new SqlSessionFactoryBuilder()

.build(Resources. getResourceAsStream("mybatis-cfg.xml"))

.openSession();

User user =

session. selectOne("com.bjsxt.mapper.UserMapper.selById", 2);

System. out.println(user);

} catch (IOException e) {

e.printStackTrace();

} finally {

session.close();

}

}

 

2. 多个参数的查询

多个参数传递时, 由于 sqlSession 中提供的查询方法只允许传入一个参数, 因此可以对多个参数进行封装. 可以使用对象或 Map 集合.

1) 封装为对象

<select id="sel" resultType="user" parameterType="user">

<!-- 如果参数是对象, 可以通过#{

属性名}来获取 -->

select * from t_user where username=#{username} and

password=#{password}

</select>

@Test

public void sel() {

SqlSession session = null;

try {

session = new SqlSessionFactoryBuilder()

.build(Resources. getResourceAsStream("mybatis-cfg.xml"))

.openSession();

User u = new User();

u.setUsername("zhangsan");

u.setPassword("123");

User user =

session.selectOne("com.bjsxt.mapper.UserMapper.sel", u);

System. out.println(user);

} catch (IOException e) {

e.printStackTrace();

} finally {

session.close();

}

}

 

2) 封装为 Map

<select id="sel" resultType="user" parameterType="map">

<!-- 如果参数是map, 可以通过#{key}来获取 -->

select * from t_user where username=#{uname} and password=#{upwd}

</select>

@Test

public void sel() {

SqlSession session = null;

try {

session = new SqlSessionFactoryBuilder()

.build(Resources. getResourceAsStream("mybatis-cfg.xml"))

.openSession();

Map<String, String> map = new HashMap<>();

map.put("uname", "lisi");

map.put("upwd", "123");

User user =

session.selectOne("com.bjsxt.mapper.UserMapper.sel", map);

System. out.println(user);

} 

catch (IOException e) {

e.printStackTrace();

} finally {

session.close();

}

}

转载于:https://www.cnblogs.com/kendyho/p/10812718.html

你可能感兴趣的文章
:hover 鼠标同时触发两个元素变化
查看>>
go语言学习十三 - 相等性
查看>>
Idea 提交代码到码云(提交到github也大同小异)
查看>>
c#连接excel2007未安装ISAM解决
查看>>
Mono 异步加载数据更新主线程
查看>>
初识lua
查看>>
我是插件狂人,jDuang,jValidator,jModal,jGallery
查看>>
张季跃 201771010139《面向对象程序设计(java)》第四周学习总结
查看>>
如何解除循环引用
查看>>
android中fragment的使用及与activity之间的通信
查看>>
字典【Tire 模板】
查看>>
jquery的contains方法
查看>>
python3--算法基础:二分查找/折半查找
查看>>
Perl IO:随机读写文件
查看>>
Perl IO:IO重定向
查看>>
转:基于用户投票的排名算法系列
查看>>
WSDL 详解
查看>>
[转]ASP数组全集,多维数组和一维数组
查看>>
C# winform DataGridView 常见属性
查看>>
逻辑运算和while循环.
查看>>