Spring+MyBatis框架中sql語句的書寫,數據集的傳遞以及多表關聯查詢


  在很多Java EE項目中,Spring+MyBatis框架經常被用到,項目搭建在這里不再贅述,現在要將的是如何在項目中書寫,增刪改查的語句,如何操作數據庫,以及后台如何獲取數據,如何進行關聯查詢,以及MyBatis的分頁問題。

  首先先看看項目的架構,方便后邊敘述。

   這個項目中是一個Sping+MyBatis的完整demo(這邊將頁面沒有展示。)這次的主題主要是后台數據處理邏輯。接下來為大家逐一介紹各個文件,

  org.config   Spring配置包括數據庫的鏈接信息

  org.controller  邏輯控制,也就是MVC中的C

  org.dao      接口基類

  org.entity      實體以及MyBatis語句

  org.util       工具類

  在數據庫中存在兩張表,分別為Customer_info,order_info。用這兩張表格最后實現多表格的關聯查詢。

  第一步驟:建立與數據庫表格字段相一致的實體類:

  customerInfo.java

package org.entity;
//實現該接口--序列化,將對象寫入文件
import java.io.Serializable;
import java.util.List;

public class CustomerInfo implements Serializable {
    private Integer customer_id;//客戶信息的id
    private String  customer_name;//客戶姓名
    private String identity_no;//身份證號碼
    private String job_add;//工作單位
    private String tel;//座機號碼
    private String cellphone;//移動電話
    private String adds;//聯系地址
    private Integer post;//郵編
    private String mail;//電子郵箱
    //關聯查詢屬性orderInfo
    private List<OrderInfo> orderInfos;
    

    public List<OrderInfo> getOrderInfos() {
        return orderInfos;
    }
    public void setOrderInfos(List<OrderInfo> orderInfos) {
        this.orderInfos = orderInfos;
    }
    
    public Integer getCustomer_id() {
        return customer_id;
    }
    public void setCustomer_id(Integer customer_id) {
        this.customer_id = customer_id;
    }
    public String getCustomer_name() {
        return customer_name;
    }
    public void setCustomer_name(String customer_name) {
        this.customer_name = customer_name;
    }
    public String getIdentity_no() {
        return identity_no;
    }
    public void setIdentity_no(String identity_no) {
        this.identity_no = identity_no;
    }
    public String getJob_add() {
        return job_add;
    }
    public void setJob_add(String job_add) {
        this.job_add = job_add;
    }
    public String getTel() {
        return tel;
    }
    public void setTel(String tel) {
        this.tel = tel;
    }
    public String getCellphone() {
        return cellphone;
    }
    public void setCellphone(String cellphone) {
        this.cellphone = cellphone;
    }
    public String getAdds() {
        return adds;
    }
    public void setAdds(String adds) {
        this.adds = adds;
    }
    public Integer getPost() {
        return post;
    }
    public void setPost(Integer post) {
        this.post = post;
    }
    public String getMail() {
        return mail;
    }
    public void setMail(String mail) {
        this.mail = mail;
    }
    
    

}
View Code

  OrderInfo.java

 1 package org.entity;
 2 
 3 import java.io.Serializable;
 4 import java.sql.Date;
 5 
 6 //訂單退貨單
 7 public class OrderInfo implements Serializable{
 8     private Integer order_id;//訂單(退貨單)信息的id
 9     private String order_type;//訂單類型
10     private String order_status;//訂單狀態
11     private Integer product_id;//商品id
12     private Integer product_account;//商品數量
13     private Double pay_money;//總額
14     private Integer customer_id;//客戶id
15     private Date start_date;//開始日期
16     private Date deadline;//要求完成日期
17     private String return_reason;//退貨原因
18     public Integer getOrder_id() {
19         return order_id;
20     }
21     public void setOrder_id(Integer order_id) {
22         this.order_id = order_id;
23     }
24     
25     public String getOrder_type() {
26         return order_type;
27     }
28     public void setOrder_type(String order_type) {
29         this.order_type = order_type;
30     }
31     public String getOrder_status() {
32         return order_status;
33     }
34     public void setOrder_status(String order_status) {
35         this.order_status = order_status;
36     }
37     public Integer getProduct_id() {
38         return product_id;
39     }
40     public void setProduct_id(Integer product_id) {
41         this.product_id = product_id;
42     }
43     public Integer getProduct_account() {
44         return product_account;
45     }
46     public void setProduct_account(Integer product_account) {
47         this.product_account = product_account;
48     }
49     public Double getPay_money() {
50         return pay_money;
51     }
52     public void setPay_money(Double pay_money) {
53         this.pay_money = pay_money;
54     }
55     public Integer getCustomer_id() {
56         return customer_id;
57     }
58     public void setCustomer_id(Integer customer_id) {
59         this.customer_id = customer_id;
60     }
61     public Date getStart_date() {
62         return start_date;
63     }
64     public void setStart_date(Date start_date) {
65         this.start_date = start_date;
66     }
67     public Date getDeadline() {
68         return deadline;
69     }
70     public void setDeadline(Date deadline) {
71         this.deadline = deadline;
72     }
73     public String getReturn_reason() {
74         return return_reason;
75     }
76     public void setReturn_reason(String return_reason) {
77         this.return_reason = return_reason;
78     }
79     
80 
81 }
View Code

  Page.java

 1 package org.entity;
 2 
 3 public class Page {
 4     //顯示第幾頁數據,默認第一頁
 5     private Integer page=1;
 6     //一頁顯示幾條,默認5條
 7     private Integer pageSize = 3;
 8     //最大頁數
 9     private Integer totalPage=1;
10     
11     public Integer getTotalPage() {
12         return totalPage;
13     }
14     public void setTotalPage(Integer totalPage) {
15         this.totalPage = totalPage;
16     }
17     //利用page和pageSize計算begin起點
18     public Integer getBegin(){
19         return (page-1)*pageSize;
20     }
21     //利用page和pageSize計算end結束點
22     public Integer getEnd(){
23         return page*pageSize+1;
24     }
25     
26     public Integer getPage() {
27         return page;
28     }
29     public void setPage(Integer page) {
30         this.page = page;
31     }
32     public Integer getPageSize() {
33         return pageSize;
34     }
35     public void setPageSize(Integer pageSize) {
36         this.pageSize = pageSize;
37     }
38 }
View Code

  在接下來的這兩個文件中,里邊詳細些了如何進行增刪改查,以及多表之間的查詢操作等。其中sql語句中的每一個id對應着dao方法中的方法名稱。dao文件的內容如下;

  customer.xml

  1 <?xml version="1.0" encoding="UTF-8" ?>  
  2 <!DOCTYPE mapper PUBLIC "-//ibatis.apache.org//DTD Mapper 3.0//EN"      
  3  "http://ibatis.apache.org/dtd/ibatis-3-mapper.dtd">
  4 <mapper namespace="org.dao.CustomerInfoMapperDao">
  5 
  6     <select id="findAll" 
  7     resultType="org.entity.CustomerInfo">
  8         select * from customer_info
  9     </select>
 10     <delete id="deleteCustomer" parameterType="int">
 11         delete from customer_info where customer_id=#{id}
 12     </delete>
 13     
 14     <insert id="saveCustomer" parameterType="org.entity.CustomerInfo">
 15         insert into Customer_info(customer_id,customer_name,identity_no,
 16         job_add,tel,cellphone,Adds,post,mail)
 17         values(customer_seq.nextval,#{customer_name,jdbcType=VARCHAR},#{identity_no,jdbcType=VARCHAR},
 18         #{job_add,jdbcType=VARCHAR},#{tel,jdbcType=VARCHAR},#{cellphone,jdbcType=VARCHAR},
 19         #{adds,jdbcType=VARCHAR},#{post,jdbcType=NUMERIC},#{mail,jdbcType=VARCHAR})
 20     </insert>
 21     
 22     <select id="findByCustomerName" 
 23         parameterType="java.lang.String"
 24         resultType="org.entity.CustomerInfo">
 25         select * from customer_info where customer_name=#{customer_name}
 26     </select>
 27     <select id="findByCustomerId" parameterType="int" resultType="org.entity.CustomerInfo">
 28         select * from customer_info where customer_id=#{customer_id,jdbcType=NUMERIC}
 29     </select>
 30     
 31     <update id="updateCustomerInfo" parameterType="org.entity.CustomerInfo">
 32         update customer_info set customer_name=#{customer_name,jdbcType=VARCHAR},
 33         identity_no=#{identity_no,jdbcType=VARCHAR},
 34         job_add=#{job_add,jdbcType=VARCHAR},tel=#{tel,jdbcType=VARCHAR},
 35         cellphone=#{cellphone,jdbcType=VARCHAR},adds=#{adds,jdbcType=VARCHAR},
 36         post=#{post,jdbcType=NUMERIC},mail=#{mail,jdbcType=VARCHAR} 
 37         where customer_id=#{customer_id,jdbcType=NUMERIC}
 38     </update>
 39     <select id="findPage" parameterType="org.entity.Page" resultType="org.entity.CustomerInfo" >
 40         select * 
 41         FROM (select c1.*,rownum rn 
 42         FROM (select * FROM customer_info order by customer_id)c1)
 43         where rn&gt;#{begin} and rn&lt;#{end}
 44         
 45     </select>
 46     
 47     <select id="findRows" resultType="int" >
 48         select count(*) from customer_info
 49     </select>
 50     
 51     <select id="somethingNotIn" resultType="返回所對應的實體">
 52             SELECT * FROM user  WHERE username NOT IN ('zhang','wang')
 53     </select>
 54 
 55     <select id="findByCuId" parameterType="java.lang.Integer" resultMap="cuAndOrderResult">
 56     select  o.customer_id,o.order_id,o.order_type,o.order_status,o.product_id,o.product_account,o.start_date,
 57     c.customer_name,c.cellphone,c.adds
 58     from order_info o left join customer_info c on(o.customer_id=c.customer_id)
 59     where o.customer_id=#{customer_id}
 60     </select>
 61     <resultMap id="cuAndOrderResult" type="org.entity.CustomerInfo" >
 62     <id property="customer_id" column="customer_id"/>
 63     <result property="customer_name" column="customer_name"/>
 64     <result property="cellphone" column="cellphone"/>
 65     <result property="adds" column="adds"/>
 66     <collection ofType="org.entity.OrderInfo"
 67             property="orderInfos"  column="customer_id" javaType="java.util.List">
 68     <id property="order_id" column="order_id"/>
 69     <result property="order_type" column="order_type"/>
 70     <result property="order_status" column="order_status"/>
 71     <result property="product_id" column="product_id"/>
 72     <result property="product_account" column="product_account"/>
 73     <result property="start_date" column="start_date"/>
 74     </collection>
 75     </resultMap>
 76     
 77      
 78          <!-- 
 79      <select id="findByCuId" 
 80         parameterType="java.lang.Integer" 
 81         resultMap="cuAndOrderResult">
 82              select  o.customer_id,o.order_id,o.order_type,o.order_status,o.product_id,o.product_account,
 83     c.customer_name,c.cellphone,c.adds
 84     from order_info o join customer_info c on(o.customer_id=c.customer_id)
 85     where o.customer_id=#{customer_id}
 86     select * from customer_info where customer_id=#{customer_id}
 87                 
 88     </select>
 89     <select id="selectOrderInfo" 
 90         parameterType="int" 
 91         resultType="org.entity.OrderInfo">
 92         select * from order_info where customer_id=#{customer_id}
 93     </select>
 94     <resultMap id="cuAndOrderResult" type="org.entity.CustomerInfo">
 95         <id column="customer_id" property="customer_id" />
 96         <collection ofType="org.entity.OrderInfo"
 97             property="orderInfos" javaType="java.util.ArrayList"
 98             column="customer_id" select="selectOrderInfo">
 99         </collection>
100     </resultMap>
101      
102       -->
103      
104      
105      
106     
107     
108     
109 
110 </mapper>
View Code

 

  OrderInfo.xml

 1 <?xml version="1.0" encoding="UTF-8" ?>  
 2 <!DOCTYPE mapper PUBLIC "-//ibatis.apache.org//DTD Mapper 3.0//EN"      
 3  "http://ibatis.apache.org/dtd/ibatis-3-mapper.dtd">
 4 <mapper namespace="org.dao.OrderInfoMapperDao">
 5 
 6     <select id="findAll" 
 7     resultType="org.entity.OrderInfo">
 8         select * from Order_Info
 9     </select>
10     
11     <select id="findPage" parameterType="org.entity.Page" resultType="org.entity.OrderInfo" >
12         select * 
13         FROM (select c1.*,rownum rn 
14         FROM (select * FROM Order_Info order by order_id)c1)
15         where rn&gt;#{begin} and rn&lt;#{end}
16         
17     </select>
18     
19     <select id="findRows" resultType="int" >
20         select count(*) from Order_Info
21     </select>
22 
23 </mapper>
View Code

  CustomerInfoMapperDao.java

 1 package org.dao;
 2 
 3 import java.util.List;
 4 
 5 import org.entity.CustomerInfo;
 6 import org.entity.Page;
 7 import org.util.MyBatisDao;
 8 
 9 
10 
11 //xml文件中的方法,然后在Controller中調用該方法
12 @MyBatisDao
13 public interface CustomerInfoMapperDao {
14     public List<CustomerInfo> findAll();
15     public void deleteCustomer(int id);
16     public void saveCustomer(CustomerInfo customer);
17     public CustomerInfo findByCustomerName(String customer_name);
18     public CustomerInfo findByCustomerId(int id);
19     public List<CustomerInfo> findByCuId(int id);//根據cuid查詢客戶的訂單信息
20     public void updateCustomerInfo(CustomerInfo customer);
21     //分頁操作
22     public  List<CustomerInfo> findPage(Page page);
23     public int findRows();
24 
25 }
View Code

  接下來主要來說一下,MyBatis中的多表關聯問題。多表關聯主要對應customer.xml中的這段代碼;

在controller中的代碼如下:

從圖中可以看到,在這邊使用了一個增強的for循環來進行處理,這樣就實現了多表之間的關聯查詢,接下來將數據顯示到前台頁面即可。

主要代碼:

1 List<CustomerInfo> list = dao.findByCuId(id);
2         String ls = "";
3         List<OrderInfo> cu = null;
4         for(CustomerInfo cus:list){
5             cu=cus.getOrderInfos();
6         }
7         model.addAttribute("customers", list);
8         model2.addAttribute("order",cu);
View Code

 

 

  


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM