JAVAEE——SSH項目實戰02:客戶列表和BaseDao封裝

来源:http://www.cnblogs.com/xieyupeng/archive/2017/07/07/7129152.html
-Advertisement-
Play Games

作者: kent鵬 轉載請註明出處: http://www.cnblogs.com/xieyupeng/p/7129152.html 該項目在SSH三大框架整合基礎上進行開發:http://www.cnblogs.com/xieyupeng/p/7108141.html 一、客戶列表 1.分析 2. ...


作者: kent鵬  

轉載請註明出處: http://www.cnblogs.com/xieyupeng/p/7129152.html

該項目在SSH三大框架整合基礎上進行開發:http://www.cnblogs.com/xieyupeng/p/7108141.html

一、客戶列表

  1.分析

  2.書寫步驟

  (1)封裝PageBean

public class PageBean {
    //當前頁數
    private Integer currentPage;
    //總記錄數
    private Integer totalCount;
    //每頁顯示條數
    private Integer pageSize;
    //總頁數
    private Integer totalPage;
    //分頁列表數據
    private List    list;
    public PageBean(Integer currentPage, Integer totalCount, Integer pageSize) {
        this.totalCount = totalCount;
        
        this.pageSize =  pageSize;
        
        this.currentPage = currentPage;
        
        if(this.currentPage == null){
            //如頁面沒有指定顯示那一頁.顯示第一頁.
            this.currentPage = 1;
        }
        
        if(this.pageSize == null){
            //如果每頁顯示條數沒有指定,預設每頁顯示3條
            this.pageSize = 3;
        }
        
        //計算總頁數
        this.totalPage = (this.totalCount+this.pageSize-1)/this.pageSize;
        
        //判斷當前頁數是否超出範圍
        //不能小於1
        if(this.currentPage < 1){
            this.currentPage = 1;
        }
        //不能大於總頁數
        if(this.currentPage > this.totalPage){
            this.currentPage = this.totalPage;
        }
        
    }
    //計算起始索引
    public int getStart(){
        return (this.currentPage-1)*this.pageSize;
    }
    
    public Integer getCurrentPage() {
        return currentPage;
    }
    public void setCurrentPage(Integer currentPage) {
        this.currentPage = currentPage;
    }
    public Integer getTotalCount() {
        return totalCount;
    }
    public void setTotalCount(Integer totalCount) {
        this.totalCount = totalCount;
    }
    public Integer getPageSize() {
        return pageSize;
    }
    public void setPageSize(Integer pageSize) {
        this.pageSize = pageSize;
    }
    public Integer getTotalPage() {
        return totalPage;
    }
    public void setTotalPage(Integer totalPage) {
        this.totalPage = totalPage;
    }
    public List getList() {
        return list;
    }
    public void setList(List list) {
        this.list = list;
    }

}

  (2)書寫Action

public class CustomerAction extends ActionSupport implements ModelDriven<Customer> {
    private Customer customer = new Customer();
    
    private CustomerService cs;

    private Integer currentPage;
    private Integer pageSize;
    public String list() throws Exception {
        //封裝離線查詢對象
        DetachedCriteria dc = DetachedCriteria.forClass(Customer.class);
        //判斷並封裝參數
        if(StringUtils.isNotBlank(customer.getCust_name())){
            dc.add(Restrictions.like("cust_name", "%"+customer.getCust_name()+"%"));
        }
        
        //1 調用Service查詢分頁數據(PageBean)
        PageBean pb = cs.getPageBean(dc,currentPage,pageSize);
        //2 將PageBean放入request域,轉發到列表頁面顯示
        ActionContext.getContext().put("pageBean", pb);
        return "list";
    }

    @Override
    public Customer getModel() {
        return customer;
    }

    public void setCs(CustomerService cs) {
        this.cs = cs;
    }

    public Integer getCurrentPage() {
        return currentPage;
    }

    public void setCurrentPage(Integer currentPage) {
        this.currentPage = currentPage;
    }

    public Integer getPageSize() {
        return pageSize;
    }

    public void setPageSize(Integer pageSize) {
        this.pageSize = pageSize;
    }

}

  (3)書寫Service

public class CustomerServiceImpl implements CustomerService {
    private CustomerDao cd;
    @Override
    public PageBean getPageBean(DetachedCriteria dc, Integer currentPage, Integer pageSize) {
        //1 調用Dao查詢總記錄數
        Integer totalCount = cd.getTotalCount(dc);
        //2 創建PageBean對象
        PageBean pb = new PageBean(currentPage, totalCount, pageSize);
        //3 調用Dao查詢分頁列表數據
        
        List<Customer> list = cd.getPageList(dc,pb.getStart(),pb.getPageSize());
        //4 列表數據放入pageBean中.並返回
        pb.setList(list);
        return pb;
    }
    public void setCd(CustomerDao cd) {
        this.cd = cd;
    }

}

  (4)書寫Dao

public class CustomerDaoImpl extends HibernateDaoSupport implements CustomerDao {

    public Integer getTotalCount(DetachedCriteria dc) {
        //設置查詢的聚合函數,總記錄數
        dc.setProjection(Projections.rowCount());
        
        List<Long> list = (List<Long>) getHibernateTemplate().findByCriteria(dc);
        
        //清空之前設置的聚合函數
        dc.setProjection(null);
        
        if(list!=null && list.size()>0){
            Long count = list.get(0);
            return count.intValue();
        }else{
            return null;
        }
    }

    public List<Customer> getPageList(DetachedCriteria dc, int start, Integer pageSize) {
        
        return (List<Customer>) getHibernateTemplate().findByCriteria(dc, start, pageSize);

    }

}

  (5)完成struts以及spring的配置

   strus.xml添加代碼:

    <action name="CustomerAction_*" class="customerAction" method="{1}" >
         <result name="list"  >/jsp/customer/list.jsp</result>
    </action>

   applicationContext.xml添加代碼:

    <bean name="customerAction" class="cn.xyp.web.action.CustomerAction" scope="prototype" >
        <property name="cs" ref="customerService" ></property>
    </bean>

    <bean name="customerService" class="cn.xyp.service.impl.CustomerServiceImpl" >
        <property name="cd" ref="customerDao" ></property>
    </bean>

    <bean name="customerDao" class="cn.xyp.dao.impl.CustomerDaoImpl" >
        <!-- 註入sessionFactory -->
        <property name="sessionFactory" ref="sessionFactory" ></property>
    </bean>

  (6)書寫前臺list.jsp頁面

   主要通過表單提交隱藏域的數據、jq和ognl表達式來實現。

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@ taglib  prefix="s" uri="/struts-tags" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<TITLE>客戶列表</TITLE> 
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<LINK href="${pageContext.request.contextPath }/css/Style.css" type=text/css rel=stylesheet>
<LINK href="${pageContext.request.contextPath }/css/Manage.css" type=text/css
    rel=stylesheet>
<script type="text/javascript" src="${pageContext.request.contextPath }/js/jquery-1.4.4.min.js"></script>
<SCRIPT language=javascript>
    function changePage(pageNum){
            //1 將頁碼的值放入對應表單隱藏域中
                $("#currentPageInput").val(pageNum);
            //2 提交表單
                $("#pageForm").submit();
    };
    
    function changePageSize(pageSize){
            //1 將頁碼的值放入對應表單隱藏域中
            $("#pageSizeInput").val(pageSize);
        //2 提交表單
            $("#pageForm").submit();
    };
</SCRIPT>

<META content="MSHTML 6.00.2900.3492" name=GENERATOR>
</HEAD>
<BODY>

        <TABLE cellSpacing=0 cellPadding=0 width="98%" border=0>
            <TBODY>
                <TR>
                    <TD width=15><IMG src="${pageContext.request.contextPath }/images/new_019.jpg"
                        border=0></TD>
                    <TD width="100%" background="${pageContext.request.contextPath }/images/new_020.jpg"
                        height=20></TD>
                    <TD width=15><IMG src="${pageContext.request.contextPath }/images/new_021.jpg"
                        border=0></TD>
                </TR>
            </TBODY>
        </TABLE>
        <TABLE cellSpacing=0 cellPadding=0 width="98%" border=0>
            <TBODY>
                <TR>
                    <TD width=15 background=${pageContext.request.contextPath }/images/new_022.jpg><IMG
                        src="${pageContext.request.contextPath }/images/new_022.jpg" border=0></TD>
                    <TD vAlign=top width="100%" bgColor=#ffffff>
                        <TABLE cellSpacing=0 cellPadding=5 width="100%" border=0>
                            <TR>
                                <TD class=manageHead>當前位置:客戶管理 &gt; 客戶列表</TD>
                            </TR>
                            <TR>
                                <TD height=2></TD>
                            </TR>
                        </TABLE>
                        <TABLE borderColor=#cccccc cellSpacing=0 cellPadding=0
                            width="100%" align=center border=0>
                            <TBODY>
                                <TR>
                                    <TD height=25>
                                    <FORM id="pageForm" name="customerForm"
                                        action="${pageContext.request.contextPath }/CustomerAction_list"
                                        method=post>
                                        <!-- 隱藏域.當前頁碼 -->
                                        <input type="hidden" name="currentPage" id="currentPageInput" value="<s:property value="#pageBean.currentPage" />" />
                                        <!-- 隱藏域.每頁顯示條數 -->
                                        <input type="hidden" name="pageSize" id="pageSizeInput"       value="<s:property value="#pageBean.pageSize" />" />
                                        <TABLE cellSpacing=0 cellPadding=2 border=0>
                                            <TBODY>
                                                <TR>
                                                    <TD>客戶名稱:</TD>
                                                    <TD><INPUT class=textbox id=sChannel2
                                                        style="WIDTH: 80px" maxLength=50 name="cust_name" value="${param.cust_name}"></TD>
                                                    
                                                    <TD><INPUT class=button id=sButton2 type=submit
                                                        value=" 篩選 " name=sButton2></TD>
                                                </TR>
                                            </TBODY>
                                        </TABLE>
                                    </FORM>
                                    </TD>
                                </TR>
                                
                                <TR>
                                    <TD>
                                        <TABLE id=grid
                                            style="BORDER-TOP-WIDTH: 0px; FONT-WEIGHT: normal; BORDER-LEFT-WIDTH: 0px; BORDER-LEFT-COLOR: #cccccc; BORDER-BOTTOM-WIDTH: 0px; BORDER-BOTTOM-COLOR: #cccccc; WIDTH: 100%; BORDER-TOP-COLOR: #cccccc; FONT-STYLE: normal; BACKGROUND-COLOR: #cccccc; BORDER-RIGHT-WIDTH: 0px; TEXT-DECORATION: none; BORDER-RIGHT-COLOR: #cccccc"
                                            cellSpacing=1 cellPadding=2 rules=all border=0>
                                            <TBODY>
                                                <TR
                                                    style="FONT-WEIGHT: bold; FONT-STYLE: normal; BACKGROUND-COLOR: #eeeeee; TEXT-DECORATION: none">
                                                    <TD>客戶名稱</TD>
                                                    <TD>客戶級別</TD>
                                                    <TD>客戶來源</TD>
                                                    <TD>聯繫人</TD>
                                                    <TD>電話</TD>
                                                    <TD>手機</TD>
                                                    <TD>操作</TD>
                                                </TR>
                                                <s:iterator value="#pageBean.list" var="cust" >
                                                <TR         
                                                    style="FONT-WEIGHT: normal; FONT-STYLE: normal; BACKGROUND-COLOR: white; TEXT-DECORATION: none">
                                                    <TD>
                                                        <s:property value="#cust.cust_name" />
                                                    </TD>
                                                    <TD>
                                                    <s:property value="#cust.cust_level" />
                                                    </TD>
                                                    <TD>
                                                    <s:property value="#cust.cust_source" />
                                                    </TD>
                                                    <TD>
                                                    <s:property value="#cust.cust_linkman" />
                                                    </TD>
                                                    <TD>
                                                    <s:property value="#cust.cust_phone" />
                                                    </TD>
                                                    <TD>
                                                    <s:property value="#cust.cust_mobile" />
                                                    </TD>
                                                    <TD>
                                                    <a href="${pageContext.request.contextPath }/customerServlet?method=edit&custId=${customer.cust_id}">修改</a>
                                                    &nbsp;&nbsp;
                                                    <a href="${pageContext.request.contextPath }/customerServlet?method=delete&custId=${customer.cust_id}">刪除</a>
                                                    </TD>
                                                </TR>
                                                </s:iterator>

                                            </TBODY>
                                        </TABLE>
                                    </TD>
                                </TR>
                                
                                <TR>
                                    <TD><SPAN id=pagelink>
                                            <DIV
                                                style="LINE-HEIGHT: 20px; HEIGHT: 20px; TEXT-ALIGN: right">
                                                共[<B><s:property value="#pageBean.totalCount" /> </B>]條記錄,[<B><s:property value="#pageBean.totalPage" /></B>]頁
                                                ,每頁顯示 <%-- changePageSize($('#pageSizeSelect option').filter(':selected').val()) --%> 
                                                <select name="pageSize" onchange="changePageSize($('#pageSizeSelect option:selected').val())" id="pageSizeSelect" >
                                                    <option value="3" <s:property value="#pageBean.pageSize==3?'selected':''" /> >3</option>
                                                    <option value="5" <s:property value="#pageBean.pageSize==5?'selected':''" /> >5</option>
                                                </select>
                                                條
                                                [<A href="javaScript:void(0)" onclick="changePage(<s:property value='#pageBean.currentPage-1' />)" >前一頁</A>]
                                                <B><s:property value="#pageBean.currentPage" /></B>
                                                [<A href="javaScript:void(0)" onclick="changePage(<s:property value='#pageBean.currentPage+1' />)"  >後一頁</A>] 
                                                到
                                                <input type="text" size="3" id="page" name="page" value="<s:property value="#pageBean.currentPage" />"  />
                                                頁
                                                
                                                <input type="button" value="Go" onclick="changePage($('#page').val())"/>
                                            </DIV>
                                    </SPAN></TD>
                                </TR>
                            </TBODY>
                        </TABLE>
                    </TD>
                    <TD width=15 background="${pageContext.request.contextPath }/images/new_023.jpg"><IMG
                        src="${pageContext.request.contextPath }/images/new_023.jpg" border=0></TD>
                </TR>
            </TBODY>
        </TABLE>
        <TABLE cellSpacing=0 cellPadding=0 width="98%" border=0>
            <TBODY>
                <TR>
                    <TD width=15><IMG src="${pageContext.request.contextPath }/images/new_024.jpg"
                        border=0></TD>
                    <TD align=middle width="100%"
                        background="${pageContext.request.contextPath }/images/new_025.jpg" height=15></TD>
                    <TD width=15><IMG src="${pageContext.request.contextPath }/images/new_026.jpg"
                        border=0></TD>
                </TR>
            </TBODY>
        </TABLE>
    
</BODY>
</HTML>

 

二、BaseDao封裝

  1.抽取BaseDao

  2.BaseDao設計思路

  3.BaseDao介面書寫

public interface BaseDao<T> {
    //
    void save(T t);
    //
    void delete(T t);
    //
    void delete(Serializable id);
    //
    void update(T t);
    //查 根據id查詢
    T    getById(Serializable id);
    //查 符合條件的總記錄數
    Integer    getTotalCount(DetachedCriteria dc);
    //查 查詢分頁列表數據
    List<T> getPageList(DetachedCriteria dc,Integer start,Integer pageSize);
    
}

  4.BaseDao的實現類

public class BaseDaoImpl<T> extends HibernateDaoSupport implements BaseDao<T> {

    private Class clazz;//用於接收運行期泛型類型
    
    
    public BaseDaoImpl() {
        //獲得當前類型的帶有泛型類型的父類
        ParameterizedType ptClass = (ParameterizedType) this.getClass().getGenericSuperclass();
        //獲得運行期的泛型類型
        clazz = (Class) ptClass.getActualTypeArguments()[0];
    }

    @Override
    public void save(T t) {
        getHibernateTemplate().save(t);
    }

    @Override
    public void delete(T t) {
        
        getHibernateTemplate().delete(t);
        
    }

    @Override
    public void delete(Serializable id) {
        T t = this.getById(id);//先取,再刪
        getHibernateTemplate().delete(t);
    }

    @Override
    public void update(T t) {
        getHibernateTemplate().update(t);
    }

    @Override
    public T getById(Serializable id) {
        
        
        
        return (T) getHibernateTemplate().get(clazz, id);
    }

    @Override
    public Integer getTotalCount(DetachedCriteria dc) {
        //設置查詢的聚合函數,總記錄數
        dc.setProjection(Projections.rowCount());
        
        List<Long> list = (List<Long>) getHibernateTemplate().findByCriteria(dc);
        
        //清空之前設置的聚合函數
        dc.setProjection(null);
        
        if(list!=null && list.size()>0){
            Long count = list.get(0);
            return count.intValue();
        }else{
            return null;
        }
        
    }

    @Override
    public List<T> getPageList(DetachedCriteria dc, Integer start, Integer pageSize) {
        
        List<T> list = (List<T>) getHibernateTemplate().findByCriteria(dc, start, pageSize);
        
        return list;
    }
}

  5.業務Dao中的應用

public class CustomerDaoImpl extends BaseDaoImpl<Customer> implements CustomerDao {
    
}

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Car has a deprecated constructor in E:\phpS... ...
  • 1.繼承關係 2.Error 程式運行時發生的無法被處理的錯誤,一旦發生,JVM終止執行。 3.Exception Exception是程式編譯與運行時出現的一種錯誤,一旦出現,JVM將告知程式員處理。分為兩種: 運行時異常:在運行時發生,RuntimeException類及子類。編譯時不需要處理, ...
  • 靜態類與實例類 共同點 不同點 單例模式?Unity ...
  • 第一步。 sudo apt-get update sudo apt-get upgrade 先更新。。 Django的主流部署方式:nginx+uwsgi+django 第二步,安裝nginx sudo apt-get install nginx 安裝nginx,如果需要安裝最新的nginx需從官網 ...
  • 一、python第一行代碼: 二、變數: name前後變化,而name2 = name已經將“SunDM12”賦值給了name2,name變化後,name2不再變化 三、交互: input函數:用戶可以在界面上顯示輸入字元,並賦值給了username 在屏幕列印的第一種格式。 %s是字元串;%d是雙 ...
  • include包含頭文件的語句中,雙引號和尖括弧的區別 #include <>格式:引用標準庫頭文件,編譯器從標準庫目錄開始搜索 #incluce ""格式:引用非標準庫的頭文件,編譯器從用戶的工作目錄開始搜索 預處理器發現 #include 指令後,就會尋找後跟的文件名並把這個文件的內容包含到當前 ...
  • 一、Spring與JDBC模板 1、搭建環境 2、數據源的配置 3、從屬性文件讀取資料庫連接信息 4、配置JDBC模板 5、DAO實現類繼承JdbcDaoSupport類 6、對資料庫的增刪改操作 7、對資料庫的查詢操作 二、Spring的事務管理 ...
  • 學習Java以來第一篇隨筆,寫一寫初學Socket編程中容易碰到的一個問題。照著教材上的例子敲了下麵這段單線程網路通信的代碼: 這段代碼應該是初學Socket編程都要敲的一段,邏輯還是比較簡單的。但是一開始我的TCPServer類和TCPClient類運行後,在控制台無法列印出兩者通過流交互的信息, ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...