Requests(9):Requests模組_SSL證書處理&關閉警告
阿新 • • 發佈:2022-03-31
<!--利用LinkedHashMap儲存多表關聯結果
MyBatis會將每一條記錄包裝為LinkedHashMap物件
key是欄位名 value是欄位對應的值,欄位型別根據表結構進行自動判斷
優點:易於拓展,易於使用
缺點:太過靈活,無法進行編譯時檢查-->
<select id="selectGoodsMap" resultType="java.util.LinkedHashMap">
select g.*,c.category_name from t_goods g,t_category c
where g.category_id = c.category_id
</select>
@Test
public void testSelectGoodsMap(){
SqlSession sqlSession=null;
try{
sqlSession=MyBatisUtils.openSession();
List<Map> list = sqlSession.selectList("goods.selectGoodsMap");
for(Map map : list){
System.out.println(map);
}
} catch (Exception e){
e.printStackTrace();
}finally {
MyBatisUtils.closeSession(sqlSession);
}
}