1. 程式人生 > >一對多查詢:查詢所有使用者資訊及使用者關聯的訂單資訊。

一對多查詢:查詢所有使用者資訊及使用者關聯的訂單資訊。

商品訂單資料模型

注意:因為一個訂單資訊只會是一個人下的訂單,所以聰哥查詢訂單資訊出發關聯查詢使用者資訊為一對一查詢。如果從使用者資訊出發查詢使用者下的訂單資訊則為一對多查詢,因為一個使用者可以下多個訂單。

案例:查詢所有使用者資訊及使用者關聯的訂單資訊

  使用者資訊和訂單資訊為一對多關係。

  使用resultMap實現。

1.將儲存資料庫表orders資訊的類Orders物件定義在User物件中(其實本質上就是誰是對應關係前面的一,就將它作為返回型別,將另一個類物件定義在它的裡面)。User類的定義內容為:

package com.huida.po;

import
java.util.Date; import java.util.List; public class User { private int id; private String username;// 使用者姓名 private String sex;// 性別 private Date birthday;// 生日 private String address;// 地址 private List<Orders> list; public List<Orders> getList() { return
list; } public void setList(List<Orders> list) { this.list = list; } public void setId(int id) { this.id = id; } public void setUsername(String username) { this.username = username; } public void setSex(String sex) { this.sex = sex; }
public void setBirthday(Date birthday) { this.birthday = birthday; } public void setAddress(String address) { this.address = address; } public int getId() { return id; } public String getUsername() { return username; } public String getSex() { return sex; } public Date getBirthday() { return birthday; } public String getAddress() { return address; } @Override public String toString() { return "User [id=" + id + ", username=" + username + "]"; } }

2.在UserMapper介面中定義方法:

  public List<User> findUserAndOrders();

3.在UserMapper.xml中進行配置:

<resultMap type="com.huida.po.User" id="userAndOrdersResultMap">
        <id column="id" property="id"/>
        <result column="username" property="username"/>
        <result column="sex" property="sex"/>
        <result column="birthday" property="birthday"/>
        <result column="address" property="address"/>
        <collection property="list" ofType="com.huida.po.Orders">
            <!-- id標籤指定主鍵欄位的對應關係 -->
            <id column="oid" property="id"></id>
            <!-- result標籤指定非主鍵欄位的對應關係 -->
            <result column="user_id" property="userId"/>
            <result column="number" property="number"/>
            <result column="createtime" property="createtime"/>
        </collection>
    </resultMap>
    <select id="findUserAndOrders" resultMap="userAndOrdersResultMap">
        <!-- select後面的屬性名必須和UserOrders中定義的屬性名相同 -->
        select a.*,b.id oid,number,createtime
        from user a,orders b 
        where a.id=b.user_id
    </select>

  注意這裡使用的是collection標籤。

  collection部分定義了使用者關聯的訂單資訊。表示關聯查詢結果集

    property="list"關聯查詢的結果集儲存在User物件的上哪個屬性。

    ofType="com.huida.po.Orders"指定關聯查詢的結果集中的物件型別即List中的物件型別。此處可以使用別名,也可以使用全限定名。

  <id /><result/>的意義同一對一查詢。

4.測試程式碼:

package com.huida.test;

import java.io.IOException;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.List;

import javax.management.Query;

import org.apache.ibatis.io.Resources;
import org.apache.ibatis.session.SqlSession;
import org.apache.ibatis.session.SqlSessionFactory;
import org.apache.ibatis.session.SqlSessionFactoryBuilder;
import org.junit.Before;
import org.junit.Test;
import org.omg.PortableInterceptor.USER_EXCEPTION;

import com.huida.mapper.UserMapper;
import com.huida.po.Orders;
import com.huida.po.User;
import com.huida.po.UserOrders;
import com.huida.vo.QueryVo;

public class UserMapperTest {

    private SqlSessionFactory factory=null;
    @Before
    public void init() throws Exception{
        //通過流將核心配置檔案讀取進來
        InputStream inputStream=Resources.getResourceAsStream("config/SqlMapConfig.xml");
        //通過核心配置檔案輸入流來建立工廠
        factory=new SqlSessionFactoryBuilder().build(inputStream);
    }
    
    @Test
    public void testfindUserAndOrders(){
        //建立SqlSession
        SqlSession openSession=factory.openSession();
        //通過會話的getMapper方法來例項化介面(實現類的物件)
        UserMapper userMapper=openSession.getMapper(UserMapper.class);//引數放介面的位元組碼檔案
        List<User> list=userMapper.findUserAndOrders();
        for(User user:list){
            System.out.println(user.getUsername()+"...."+user.getList());
        }
    }
    
}