java

关注公众号 jb51net

关闭
首页 > 软件编程 > java > Mybatis查询多条记录返回List

Mybatis查询多条记录并返回List集合的方法

作者:走路的猫头鹰

这篇文章主要介绍了Mybatis查询多条记录并返回List集合的方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧

实体对象如下:

/**
使用lobmok插件
*/
@Getter
@Setter
@NoArgsConstructor
@ToString
@EqualsAndHashCode
public class Vendor {
 private String vend_id;
 private String vend_name;
 private String vend_address;
 private String vend_city;
 private String vend_state;
 private String vend_zip;
 private String vend_country;
}

XML映射文件如下:

<select id="findVendorAll" resultType="vendor">
 select * from Vendors
</select>

接口文件方法如下:

//查询所有记录
List<Vendor> findVendorAll();

测试文件如下:

try {
 String resource = "mybatis-config.xml";
 InputStream resourceAsStream = Resources.getResourceAsStream(resource);
 SqlSessionFactory build = new SqlSessionFactoryBuilder().build(resourceAsStream,"development2");
 //获取SQLSession
 SqlSession openSession = build.openSession();
 VendorMapper mapper = openSession.getMapper(VendorMapper.class);
 List<Vendors> findVendorAll = mapper.findVendorAll();
 
 System.out.println(findVendorAll);
 
} catch (IOException e) {
 System.out.println("加载配置文件失败");
 e.printStackTrace();
}

笔记:

到此这篇关于Mybatis查询多条记录并返回List集合的方法的文章就介绍到这了,更多相关Mybatis查询多条记录返回List内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:
阅读全文