ssm客戶管理系統的設計與實現

来源:https://www.cnblogs.com/peter-hao/archive/2019/04/01/ssm_custom.html
-Advertisement-
Play Games

ssm客戶管理系統 註意:本文是在我的上一篇文章 https://www.cnblogs.com/peter-hao/p/ssm.html的基礎上開發 1 需求 1.1 添加客戶 客戶填寫信息,提交,將信息保存到資料庫中。 1.2 刪除客戶 在每條查詢出來的客戶信息設置刪除操作,點擊即可刪除。更新數 ...


ssm客戶管理系統

註意:本文是在我的上一篇文章 https://www.cnblogs.com/peter-hao/p/ssm.html的基礎上開發

1     需求

1.1   添加客戶

客戶填寫信息,提交,將信息保存到資料庫中。

1.2   刪除客戶

在每條查詢出來的客戶信息設置刪除操作,點擊即可刪除。更新資料庫。

1.3   更新客戶信息

在每條查詢出來的客戶信息設置修改操作,點擊進入修改界面,提交,更新資料庫。

1.4   查詢客戶

查詢所有的客戶信息;根據客戶名稱進行模糊查詢;根據客戶類型進行查詢。

2     編寫思路

從後端向前端開始編寫的思路。首先,編寫dao層的增刪改查的方法,這裡大部分利用逆向工程生成的mapper介面中的crud的方法,模糊查詢和根據客戶類型查詢則是重新自定義mapper和xml文件。其次,編寫service介面和service實現類,通過spring註解開發,在service實現類中註入mapper介面類,在service實現類中調用mapper中的方法,實現crud操作。然後,開發controller層,註入service介面類,調用service介面中的方法,查詢到的數據通過視圖解析器解析modelAndView傳到jsp界面。修改、刪除和更新後通過redirect重定向到查詢頁面,查看操作後的客戶信息。

2.1   dao層

2.1.1  逆向工程中mapper介面中的crud的方法。

運用到逆向工程中mapper介面的以下四個方法:

 

2.1.2  模糊查詢的mapper介面和xml

Mapper介面:

 

public interface CustomMapper {

   public List<HhCustom> findAllCustom(HhCustomVo hhCustomVo)throws Exception;

}

 

Mapper.xml:

 

<?xml version="1.0" encoding="UTF-8"?>

<!DOCTYPE mapper

PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"

"http://mybatis.org/dtd/mybatis-3-mapper.dtd">

 

<!-- namespace:命名空間,作用是對sql進行分類化管理,sql隔離 -->

<mapper namespace="cn.haohan.ssm.mapper.CustomMapper">

   <sql id="query_custom_where">

       <if test="hhCustom!=null">

       <if test="hhCustom.name!=null and hhCustom.name!=''">

          name like '%${hhCustom.name}%'

       </if>

       <if test="hhCustom.category!=null and hhCustom.category!=''">

          and category = #{hhCustom.category}

       </if>

       </if>

   </sql>

   <resultMap type="hhCustom" id="hhCustomResultMap">

   <id column="id" property="id"/>

   <result column="phone_number" property="phoneNumber"/>

   </resultMap>

   <select id="findAllCustom" parameterType="cn.haohan.ssm.po.HhCustomVo" resultMap="hhCustomResultMap">

      SELECT

      * FROM hh_custom

       <where>

         <include refid="query_custom_where"></include>

      </where>

   </select>

</mapper>

2.2   service層

2.2.1  service介面

public interface CustomService {

   //根據客戶id查詢

   public HhCustom findCustomById(Integer id)throws Exception;

   //模糊查詢客戶信息

   public List<HhCustom> findAllCustom(HhCustomVo hhCustomVo)throws Exception;

   //根據客戶id刪除客戶

   public void deleteCustomById(Integer id)throws Exception;

   //添加用戶

   public void addCustom(HhCustom hhCustom)throws Exception;

   //更新用戶信息

   public void updateCustom(Integer id,HhCustom hhCustom)throws Exception;

}

2.2.2  service實現類

public class CustomServiceImpl implements CustomService{

  

   @Autowired

   HhCustomMapper hhCustomMapper;

   @Autowired

   CustomMapper customMapper;

   @Override

   public HhCustom findCustomById(Integer id) throws Exception {

      return hhCustomMapper.selectByPrimaryKey(id);

   }

   @Override

   public List<HhCustom> findAllCustom(HhCustomVo hhCustomVo) throws Exception {

      return customMapper.findAllCustom(hhCustomVo);

   }

   @Override

   public void deleteCustomById(Integer id) throws Exception {

      int row  = hhCustomMapper.deleteByPrimaryKey(id);

     

   }

   @Override

   public void addCustom(HhCustom hhCustom) throws Exception {

      hhCustomMapper.insertSelective(hhCustom);

   }

   @Override

   public void updateCustom(Integer id, HhCustom hhCustom) throws Exception {

      hhCustom.setId(id);

      hhCustomMapper.updateByPrimaryKeySelective(hhCustom);

   }

 

}

2.3   controller層

@Controller

public class CustomController {

 

   @Autowired

   CustomService customService;

 

   // 客戶分類

   // customTypes表示最終將方法返回值放在request域中的key

   @ModelAttribute("customTypes")

   public Map<String, String> getcustomTypes() {

      Map<String, String> customTypes = new HashMap<String, String>();

      customTypes.put("101", "普通客戶");

      customTypes.put("102", "意向客戶");

      customTypes.put("103", "活躍客戶");

      customTypes.put("104", "Vip客戶");

      return customTypes;

   }

 

   // 模糊查詢客戶

   @RequestMapping("/findAllCustom")

   public ModelAndView findAllCustom(HhCustomVo hhCustomVo) throws Exception {

      List<HhCustom> customlist = customService.findAllCustom(hhCustomVo);

      ModelAndView modelAndView = new ModelAndView();

      modelAndView.addObject("customlist", customlist);

      modelAndView.setViewName("customlist");

      return modelAndView;

   }

 

   // 根據客戶id查詢

   @RequestMapping("/findCustomByid")

   public ModelAndView findCustomByid(Integer id) throws Exception {

      HhCustom hhCustom = customService.findCustomById(id);

      ModelAndView modelAndView = new ModelAndView();

      modelAndView.addObject("hhCustom", hhCustom);

      modelAndView.setViewName("customlist");

      return modelAndView;

   }

 

   // 添加客戶

   // String返回邏輯視圖名,在springmvc中配置的視圖解析器中配置jsp文件前尾碼

   @RequestMapping("/addCustom")

   public String addCustom() throws Exception {

      return "add_custom";

   }

 

   // 添加客戶submit

   @RequestMapping("/addCustomSubmit")

   public String addCustomSubmit(HhCustom hhCustom) throws Exception {

      customService.addCustom(hhCustom);

      // 重定向

      return "redirect:findAllCustom.action";

   }

 

   // 刪除客戶

   @RequestMapping("/deleteCustom")

   public String deleteCustom(Integer id) throws Exception {

      customService.deleteCustomById(id);

      return "redirect:findAllCustom.action";

   }

 

   // 更新客戶信息

   @RequestMapping("/updateCustom")

   public String updateCustom(Model model, Integer id) throws Exception {

      HhCustom hhCustom = customService.findCustomById(id);

      model.addAttribute("hhCustom", hhCustom);

      return "update_custom";

   }

 

   // 更新客戶信息submit

   @RequestMapping("/updateCustomSubmit")

   public String updateCustomSubmit(Integer id, HhCustom hhCustom) throws Exception {

      customService.updateCustom(id, hhCustom);

      return "redirect:findAllCustom.action";

   }

}

 

2.4   jsp界面

2.4.1  customlist.jsp

<%@ page language="java" contentType="text/html; charset=UTF-8"

   pageEncoding="UTF-8"%>

<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>

<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%>

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

<script type="text/javascript">

function addCustom(){

document.customForm.action="${pageContext.request.contextPath}/addCustom.action";

   document.customForm.submit();

}

</script>

<title>客戶列表</title>

</head>

<body>

   <form name="customForm"

      action="${pageContext.request.contextPath}/findAllCustom.action"

      method="post">

      查詢條件:

      <table width="100%" border=1>

         <tr>

            <td>客戶名稱:<input name="hhCustom.name" />

            </td>

            <td>客戶類型: <select name="hhCustom.category">

                   <option selected="selected"></option>

                   <c:forEach items="${customTypes}" var="customType">

                      <option value="${customType.value }">${customType.value}</option>

                   </c:forEach>

            </select>

            </td>

            <td><button type="submit" value="查詢" >查詢</button></td>

            <td><input type="button" value="添加客戶" onclick="addCustom()"/></td>

         </tr>

      </table>

      客戶列表:

      <table width="100%" border=1>

         <tr>

            <!-- <th>選擇</th>  -->

            <th>客戶名稱</th>

            <th>客戶郵箱</th>

            <th>客戶電話</th>

            <th>客戶類型</th>

            <th>操作</th>

         </tr>

         <c:forEach items="${customlist}" var="custom">

            <tr>

                <%-- <td><input type="checkbox" name="custom_id" value="${custom.id}" /></td> --%>

                <td>${custom.name }</td>

                <td>${custom.mail }</td>

                <td>${custom.phoneNumber }</td>

                <td>${custom.category }</td>

                <%--<td><fmt:formatDate value="${custom.birthday }" pattern="yyyy-MM-dd HH:mm:ss"/></td>--%>

                <td><a href="${pageContext.request.contextPath }/updateCustom.action?id=${custom.id }">修改</a>

                   <a href="${pageContext.request.contextPath }/deleteCustom.action?id=${custom.id }">刪除</a>

                </td>

            </tr>

         </c:forEach>

      </table>

   </form>

</body>

</html>

2.4.2  add_custom.jsp

<%@ page language="java" contentType="text/html; charset=UTF-8"

    pageEncoding="UTF-8"%>

<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>

<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

<title>添加客戶</title>

</head>

<body>

<form id="customForm" action="${pageContext.request.contextPath}/addCustomSubmit.action" method="post">

添加客戶信息:

<table width="100%" border=1>

   <tr>

      <td>客戶名稱</td>

      <td><input type="text" name="name" /></td>

   </tr>

   <tr>

      <td>客戶郵箱</td>

      <td><input type="text" name="mail" /></td>

   </tr>

   <tr>

      <td>客戶電話號碼</td>

      <td><input type="text" name="phoneNumber" /></td>

   </tr>

   <tr>

      <td>客戶類型</td>

      <td><select name="category">

         <c:forEach items="${customTypes}" var="customType">

            <%-- <option value="${customType.key }">${customType.value}</option> --%>

            <option value="${customType.value }">${customType.value}</option>

         </c:forEach>

      </select>

      </td>

   </tr>

</table>

   <input type="submit" value="提交">

   <input type="reset" value="重置">

</form>

</body>

</html>

2.4.3  update_custom.jsp

<%@ page language="java" contentType="text/html; charset=UTF-8"

   pageEncoding="UTF-8"%>

<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>

<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%>

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

<title>修改客戶信息</title>

</head>

<body>

   <form id="customForm"

      action="${pageContext.request.contextPath}/updateCustomSubmit.action"

      method="post">

      <input type="hidden" name="id" value="${hhCustom.id }" /> 修改客戶信息:

      <table width="100%" border=1>

         <tr>

            <th>客戶名稱</th>

            <td><input type="text" name="name" value="${hhCustom.name }" /></td>

         </tr>

         <tr>

            <td>客戶郵箱</td>

            <td><input type="text" name="mail" value="${hhCustom.mail }" /></td>

         </tr>

         <tr>

            <td>客戶電話號碼</td>

            <td><input type="text" name="phoneNumber"

                value="${hhCustom.phoneNumber }" /></td>

         </tr>

         <tr>

            <td>客戶類型</td>

            <td><select name="category">

           <c:forEach items="${customTypes}" var="customType">

                      <%-- <option value="${customType.key }">${customType.value}</option> --%>

                      <c:if test="${hhCustom.category==customType.value }">

                         <option value="${customType.value }" selected="selected">${customType.value }</option>

                      </c:if>                    

                         <option value="${customType.value }" >${customType.value}</option>    

                   </c:forEach>

            </select></td>

            <%-- <td><input type="text" name="category" value="${hhCustom.category }"/></td> --%>

         </tr>

      </table>

      <input type="submit" value="提交">

   </form>

</body>

</html>

3     視圖展示

3.1   查詢

 

3.2   模糊查詢

 

模糊查詢加客戶類型

 

3.3   添加

 

3.4   修改

 

3.5   刪除

 


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

-Advertisement-
Play Games
更多相關文章
  • 早在介紹多態的時候,曾經提到公雞實例的性別屬性可能被篡改為雌性,不過面向對象的三大特性包含了封裝、繼承和多態,只要把性別屬性設置為private私有級別,也不提供setSex這樣的性別修改方法,那麼性別屬性就被嚴嚴實實地封裝了起來,不但外部無法修改性別屬性,連公雞類的子類都無法修改。如此一來,公雞實 ...
  • 1.不要在常量和變數中出現易混淆的數字 個人感覺這條在於編程命名的規範性。代碼除了給機器看,也要給人看。要寫能夠結構清晰,命名規範,讓人看懂的代碼。 字母l作為長整型標誌時務必大寫 L 2.莫讓常量蛻變成變數 java的常量有編譯期常量和運行期常量。他們都被static final修飾。引用被sta ...
  • 1.JVM運行時數據區 (1)程式計數器:線程私有,可以看做是當前線程所執行的位元組碼的行號指示器。選取下一條位元組碼指令、分支、線程恢復等都需要程式計數器來完成。 (2)虛擬機棧:同樣是線程私有,它描述的是java方法執行的記憶體模型:每個方法在執行的同時,都會創建一個棧幀,用來存放局部變數表、操作數棧 ...
  • 死磕 java集合之LinkedHashMap源碼分析 你瞭解它的存儲結構嗎? 你知道它為什麼可以用來實現LRU緩存嗎? 它真的可以直接拿來實現LRU緩存嗎? ...
  • 通常GC採用有向圖的方式記錄和管理堆區中的所有對象 JVM將堆記憶體劃分為 Eden、Survivor 和 Tenured/Old 空間。 1. 年輕代 所有新生成的對象首先都是放在Eden區。 年輕代的目標就是儘可能快速的收集掉那些生命周期短的對象,對應的是Minor GC,每次 Minor GC ...
  • 用鏈表實現棧一開始在表頭插入,就要一直在表頭插入一開始在表尾插入,就要一直在表頭插尾表頭當棧底 也可以把表尾當棧底 實現的測試代碼筆記如下: 附: 推箱子實現,代碼筆記如下所示: 最後實現效果如下所示; 2019-04-01 21:33:15 ...
  • ●使用PHP+MySQL實現修改密碼 頁面: index.php 登陸頁面,輸入預設密碼登陸系統 check.php 核查頁面,通過查詢資料庫檢測密碼是否正確 ——> 正確,則進入系統 或 錯誤,提示“密碼錯誤”,返回登錄頁面 system.php 系統頁面,內含“修改密碼”鏈接 change.ph ...
  • Leetcode(2) 記:這幾天內心十分焦慮,研究生的日子一天天過去,感覺毫無收穫,每天刷個題來壓壓驚. 2.Add Two Number · 錯誤示例 · 思路 寫兩個函數將一個數從List轉化為int, 相加後再從int轉化為List返回. · 偽代碼: 1.構造兩個函數分別代表: 一個數字從 ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...