mybatis select是mybatis 中最常用的元素之一。
对简单的查询,select 元素的配置是相当简单的:
<!--可重用的SQL代码段-->
<sql id="blog\_column">id,title,author\_id as authorId</sql>
<select id="selectBlog\_as\_map" parameterType="int" resultType="hashmap">
select <include refid="blog\_column"/> from Blog where id = #{id}
</select>
这个语句被称作selectBlog_as_map,使用一个int (或Integer)类型的参数,并返回一个HashMap类型的对象。
#{id}告诉mybatis创建了一个PreparedStatement(预处理语句)参数。
在JDBC中,类似的代码如下:
String selectBlog_as_map = “select * from Blog where id =?”;
PreparedStatement ps = conn.prepareStatement(selectBlog_as_map);
ps.setInt(1,id);
测试代码:
public static void selectBlogAsMap(int id) {
SqlSession session = sqlMapper.openSession();
Map
System.out.println(map);
session.close();
}
SELECT的属性还有很多的属性可以配置,具体的如下:
手机扫一扫
移动阅读更方便
你可能感兴趣的文章