1. 程式人生 > >mybatis 下hashMap 與 寫 rusultMap="xxxMap" 的對比

mybatis 下hashMap 與 寫 rusultMap="xxxMap" 的對比

 <select id="findoneone" parameterType="int" resultType="java.util.HashMap" >
  	select u.*,p.* from products u,productimg p where u.productid =p.productid and u.productid = #{productid} 
  </select>

hashMap 得到鍵值對  適合json         接收List<Map<string,Object>>

resultMap 得到的是物件 適合組裝   接收 resultMap 的type