demo_1

来源:https://www.cnblogs.com/DebugTheWorld/archive/2018/11/01/9893499.html
-Advertisement-
Play Games

我練習的demo是基於SSM+MySQL+Eclipse+Tomcat8+Maven3實現的; 創建項目 ## 創建Maven Project: Artifact Id: cn.com.demo Group Id: demo ## 完成項目的基本配置 ## 生成web.xml ## 添加Tomcat ...


我練習的demo是基於SSM+MySQL+Eclipse+Tomcat8+Maven3實現的;

創建項目

##  創建Maven Project:

  Artifact Id: cn.com.demo
       Group Id: demo

##  完成項目的基本配置

##  生成web.xml

##  添加Tomcat Runtime

##  添加pom.xml

 1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 2   <modelVersion>4.0.0</modelVersion>
 3   <groupId>cn.xx</groupId>
 4   <artifactId>demo</artifactId>
 5   <version>0.0.1-SNAPSHOT</version>
 6   <packaging>war</packaging>
 7   <dependencies>
 8         <!-- spring 的依賴jar包 -->
 9         <dependency>
10             <groupId>org.springframework</groupId>
11             <artifactId>spring-webmvc</artifactId>
12             <version>4.3.9.RELEASE</version>
13         </dependency>
14 
15         <!-- spring-jdbc的依賴jar包 -->
16         <dependency>
17             <groupId>org.springframework</groupId>
18             <artifactId>spring-jdbc</artifactId>
19             <version>4.3.9.RELEASE</version>
20         </dependency>
21 
22         <!-- junit測試jar包 -->
23         <dependency>
24             <groupId>junit</groupId>
25             <artifactId>junit</artifactId>
26             <version>4.12</version>
27         </dependency>
28 
29         <!-- 資料庫的連接池 -->
30         <dependency>
31             <groupId>commons-dbcp</groupId>
32             <artifactId>commons-dbcp</artifactId>
33             <version>1.4</version>
34         </dependency>
35 
36         <!-- mysql資料庫 -->
37         <dependency>
38             <groupId>MySQL</groupId>
39             <artifactId>mysql-connector-java</artifactId>
40             <version>5.1.6</version>
41         </dependency>
42 
43         <!-- mybatis -->
44         <dependency>
45             <groupId>org.mybatis</groupId>
46             <artifactId>mybatis</artifactId>
47             <version>3.2.5</version>
48         </dependency>
49 
50         <!-- mybatis-spring整合 -->
51         <dependency>
52             <groupId>org.mybatis</groupId>
53             <artifactId>mybatis-spring</artifactId>
54             <version>1.3.2</version>
55         </dependency>
56 
57         <!-- jstl -->
58         <dependency>
59             <groupId>jstl</groupId>
60             <artifactId>jstl</artifactId>
61             <version>1.2</version>
62         </dependency>
63 
64     </dependencies>
65 </project>

##  配置web.xml

 1 <?xml version="1.0" encoding="UTF-8"?>
 2 <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 3     xmlns="http://java.sun.com/xml/ns/javaee"
 4     xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
 5     version="2.5">
 6     <display-name>demo</display-name>
 7     
 8     <welcome-file-list>
 9         <welcome-file>index.html</welcome-file>
10         <welcome-file>index.jsp</welcome-file>
11     </welcome-file-list>
12     <!-- Servlet控制器 -->
13     <servlet>
14         <servlet-name>dispatcherServlet</servlet-name>
15         <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
16         <init-param>
17             <param-name>contextConfigLocation</param-name>
18             <param-value>classpath:spring-*.xml</param-value>
19         </init-param>
20         <load-on-startup>1</load-on-startup>
21     </servlet>
22     <servlet-mapping>
23         <servlet-name>dispatcherServlet</servlet-name>
24         <url-pattern>*.do</url-pattern>
25     </servlet-mapping>
26 
27     <filter>
28         <filter-name>filter</filter-name>
29         <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
30         <init-param>
31             <param-name>encoding</param-name>
32             <param-value>utf-8</param-value>
33         </init-param>
34     </filter>
35     <filter-mapping>
36         <filter-name>filter</filter-name>
37         <url-pattern>/*</url-pattern>
38     </filter-mapping>
39 </web-app>

##  Spring的配置文件

spring-mvc.xml

 1 <?xml version="1.0" encoding="UTF-8"?>
 2 <beans xmlns="http://www.springframework.org/schema/beans" 
 3     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 4     xmlns:context="http://www.springframework.org/schema/context" 
 5     xmlns:jdbc="http://www.springframework.org/schema/jdbc"  
 6     xmlns:jee="http://www.springframework.org/schema/jee" 
 7     xmlns:tx="http://www.springframework.org/schema/tx"
 8     xmlns:aop="http://www.springframework.org/schema/aop" 
 9     xmlns:mvc="http://www.springframework.org/schema/mvc"
10     xmlns:util="http://www.springframework.org/schema/util"
11     xmlns:jpa="http://www.springframework.org/schema/data/jpa"
12     xsi:schemaLocation="
13         http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
14         http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd
15         http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-3.2.xsd
16         http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-3.2.xsd
17         http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.2.xsd
18         http://www.springframework.org/schema/data/jpa http://www.springframework.org/schema/data/jpa/spring-jpa-1.3.xsd
19         http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.2.xsd
20         http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd
21         http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.2.xsd">
22         
23         <!-- 組件掃描 -->
24         <context:component-scan base-package="控制器路徑"/>
25         
26         <!-- 配置視圖解析器 InternalResourceViewResolver  -->
27         <bean id="ViewResource" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
28         <!-- 首碼 -->
29         <property name="prefix" value="/WEB-INF/web/"/>
30         <!-- 尾碼 -->
31         <property name="suffix" value=".jsp"/>
32         
33         <!--    1、基於註解的映射器預設是:DefaultAnnotationHandlerMapping,映射處理器是2.5版本的;
34                  2、3.2版本定義一個新的映射處理器:RequestMappingHandlerMapping
35                  3、如果要改變預設的映射處理器,處理下麵的配置
36                  4、預設初始化一些工具類:比如異常處理,解析json-->
37         <mvc:annotation-driven />
38         </bean>
39         
40         
41         
42         
43         
44         
45         
46         </beans>

spring-dao.xml

 1 <?xml version="1.0" encoding="UTF-8"?>
 2 <beans xmlns="http://www.springframework.org/schema/beans" 
 3     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 4     xmlns:context="http://www.springframework.org/schema/context" 
 5     xmlns:jdbc="http://www.springframework.org/schema/jdbc"  
 6     xmlns:jee="http://www.springframework.org/schema/jee" 
 7     xmlns:tx="http://www.springframework.org/schema/tx"
 8     xmlns:aop="http://www.springframework.org/schema/aop" 
 9     xmlns:mvc="http://www.springframework.org/schema/mvc"
10     xmlns:util="http://www.springframework.org/schema/util"
11     xmlns:jpa="http://www.springframework.org/schema/data/jpa"
12     xsi:schemaLocation="
13         http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
14         http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd
15         http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-3.2.xsd
16         http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-3.2.xsd
17         http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.2.xsd
18         http://www.springframework.org/schema/data/jpa http://www.springframework.org/schema/data/jpa/spring-jpa-1.3.xsd
19         http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.2.xsd
20         http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd
21         http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.2.xsd">
22         
23         <!--1、util:properties表示讀取外部的屬性文件,並實例化對象
24             2、id表示名稱
25             3、localhost表示屬性文件的位置 -->
26     <util:properties id="jdbc"
27         location="classpath:db.properties" />
28             
29         <!-- 配置資料庫的連接池
30             1、使用spring表達式給屬性賦值
31             2、spring表達式語法格式:#{} -->
32     <bean id="dataSource"
33         class="org.apache.commons.dbcp.BasicDataSource">
34         <property name="driverClassName"
35             value="#{jdbc.driverClassName}" />
36         <property name="url" value="#{jdbc.url}" />
37         <property name="username" value="#{jdbc.username}" />
38         <property name="password" value="#{jdbc.password}" />
39     </bean>
40 
41     <!-- 持久層介面的掃描 -->
42     <bean id="scannerConfigurer"
43         class="org.mybatis.spring.mapper.MapperScannerConfigurer">
44         <property name="basePackage" value="持久層路徑" />
45     </bean>
46 
47     <!-- SqlSessionFactoryBean的初始化 -->
48     <bean id="factoryBean"
49         class="org.mybatis.spring.SqlSessionFactoryBean">
50         <!-- 依賴註入數據源(dataSource) -->
51         <property name="dataSource" ref="dataSource" />
52         <!-- 讀取編寫sql語句的映射文件 -->
53         <property name="mapperLocations"
54             value="classpath:mappers/*.xml" />
55     </bean>
56         
57 </beans>

spring-service.xml

 1 <?xml version="1.0" encoding="UTF-8"?>
 2 <beans xmlns="http://www.springframework.org/schema/beans" 
 3     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 4     xmlns:context="http://www.springframework.org/schema/context" 
 5     xmlns:jdbc="http://www.springframework.org/schema/jdbc"  
 6     xmlns:jee="http://www.springframework.org/schema/jee" 
 7     xmlns:tx="http://www.springframework.org/schema/tx"
 8     xmlns:aop="http://www.springframework.org/schema/aop" 
 9     xmlns:mvc="http://www.springframework.org/schema/mvc"
10     xmlns:util="http://www.springframework.org/schema/util"
11     xmlns:jpa="http://www.springframework.org/schema/data/jpa"
12     xsi:schemaLocation="
13         http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
14         http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd
15         http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-3.2.xsd
16         http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-3.2.xsd
17         http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.2.xsd
18         http://www.springframework.org/schema/data/jpa http://www.springframework.org/schema/data/jpa/spring-jpa-1.3.xsd
19         http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.2.xsd
20         http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd
21         http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.2.xsd">
22         
23         <!-- 掃描包 可以掃描到當前包和子包下的所有類 -->
24     <context:component-scan
25         base-package="cn.com.service" />
26         
27         
28 </beans>

##  資料庫的配置文件

db.properties

1 driverClassName=com.mysql.jdbc.Driver
2 url=jdbc:mysql://localhost:3306/mysql
3 username=root
4 password=123

##  MyBatis的映射模版

創建mappers文件夾,並添加sql映射文件

持久層

檢查配置
檢查`db.properties`中的資料庫名稱
檢查`spring-dao.xml`中配置的介面文件的包名

創建User類
創建`com.demo.pojo.User`類,屬性可參考數據表。

私有化所有屬性,提供所有屬性的SET/GET方法,添加無參數和全參數的構造方法,自動生成`toString()`方法(便於測試數據),`equals()`和`hashCode()`可後續再添加,實現`Serializable`介面,並生成序列化ID。

  1 package com.demo.pojo;
  2 
  3 import java.io.Serializable;
  4 import java.util.Date;
  5 
  6 public class User implements Serializable {
  7     /**
  8      * 
  9      */
 10     private static final long serialVersionUID = -4390901662089334130L;
 11     private Integer id;
 12     private String username;
 13     private String password;
 14     private Integer gender;
 15     private String phone;
 16     private String email;
 17     private String uuid;
 18     private String createdUser;
 19     private Date createdTime;
 20     private String modifiedUser;
 21     private Date modifiedTime;
 22 
 23     public User() {
 24         super();
 25         // TODO Auto-generated constructor stub
 26     }
 27 
 28     public User(Integer id, String username, String password, Integer gender, String phone, String email, String uuid,
 29             String createdUser, Date createdTime, String modifiedUser, Date modifiedTime) {
 30         super();
 31         this.id = id;
 32         this.username = username;
 33         this.password = password;
 34         this.gender = gender;
 35         this.phone = phone;
 36         this.email = email;
 37         this.uuid = uuid;
 38         this.createdUser = createdUser;
 39         this.createdTime = createdTime;
 40         this.modifiedUser = modifiedUser;
 41         this.modifiedTime = modifiedTime;
 42     }
 43 
 44     public Integer getId() {
 45         return id;
 46     }
 47 
 48     public void setId(Integer id) {
 49         this.id = id;
 50     }
 51 
 52     public String getUsername() {
 53         return username;
 54     }
 55 
 56     public void setUsername(String username) {
 57         this.username = username;
 58     }
 59 
 60     public String getPassword() {
 61         return password;
 62     }
 63 
 64     public void setPassword(String password) {
 65         this.password = password;
 66     }
 67 
 68     public Integer getGender() {
 69         return gender;
 70     }
 71 
 72     public void setGender(Integer gender) {
 73         this.gender = gender;
 74     }
 75 
 76     public String getPhone() {
 77         return phone;
 78     }
 79 
 80     public void setPhone(String phone) {
 81         this.phone = phone;
 82     }
 83 
 84     public String getEmail() {
 85         return email;
 86     }
 87 
 88     public void setEmail(String email) {
 89         this.email = email;
 90     }
 91 
 92     public String getUuid() {
 93         return uuid;
 94     }
 95 
 96     public void setUuid(String uuid) {
 97         this.uuid = uuid;
 98     }
 99 
100     public String getCreatedUser() {
101         return createdUser;
102     }
103 
104     public void setCreatedUser(String createdUser) {
105         this.createdUser = createdUser;
106     }
107 
108     public Date getCreatedTime() {
109         return createdTime;
110     }
111 
112     public void setCreatedTime(Date createdTime) {
113         this.createdTime = createdTime;
114     }
115 
116     public String getModifiedUser() {
117         return modifiedUser;
118     }
119 
120     public void setModifiedUser(String modifiedUser) {
121         this.modifiedUser = modifiedUser;
122     }
123 
124     public Date getModifiedTime() {
125         return modifiedTime;
126     }
127 
128     public void setModifiedTime(Date modifiedTime) {
129         this.modifiedTime = modifiedTime;
130     }
131 
132     @Override
133     public String toString() {
134         return "User [id=" + id + ", username=" + username + ", password=" + password + ", gender=" + gender
135                 + ", phone=" + phone + ", email=" + email + ", uuid=" + uuid + ", createdUser=" + createdUser
136                 + ", createdTime=" + createdTime + ", modifiedUser=" + modifiedUser + ", modifiedTime=" + modifiedTime
137                 + "]";
138     }
139 
140 }

 

創建包和介面

創建`com.demo.dao.UserMapper`介面,並添加抽象方法:

 1 package com.demo.dao;
 2 
 3 import com.demo.pojo.User;
 4 
 5 public interface UserMapper {
 6     /**
 7      * 添加用戶信息
 8      * @param user 用戶信息
 9      * @return 返回有效行數
10      */
11     Integer insert(User user);
12 }

##  配置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 
 5 <!-- namespace:匹配的介面 -->
 6 <mapper namespace="com.demo.dao.UserMapper">
 7 
 8     <!-- 添加用戶信息 -->
 9     <!-- Integer insert(User user) -->
10 
11     <insert id="insert" parameterType="com.demo.pojo.User"
12         useGeneratedKeys="true" keyProperty="id">
13     INSERT INTO 
14         t_user (
15         username,
16         password,
17         gender,
18         phone,
19         email,
20         uuid,
21         created_user,
22         created_time,
23         modified_user,
24         modified_time
25     ) VALUES (
26         #{username},
27         #{password},
28         #{gender},
29         #{phone},
30         #{email},
31         #{uuid},
32         #{createdUser},
33         #{createdTime},
34         #{modifiedUser},
35         #{modifiedTime}
36     )
37     </insert>
38 </mapper>

 

 


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

-Advertisement-
Play Games
更多相關文章
  • https://blog.csdn.net/oumaharuki/article/details/79268498 別人的記載,寫的很不錯,還有下載的方法 以下是自己使用過的,做出來的例子: 做出來的效果圖: 記住使用之前要npm下載哦 npm install vue-codemirror --sa ...
  • 想知道immutablejs、mobx和原生的redux對比,到底誰的性能更高一籌嗎,我們該如何對web頁面進行性能測試嗎,敬請關註我的這三篇博客,文中我將會從採集數據、分析數據、得出結論等方面詳細的闡述我的測試歷程。 ...
  • *** 全局變數:在script標簽裡面定義一個變數,這個變數在頁面中js部分都可以使用 - 在方法外部使用,在方法內部使用,在另外一個script標簽中使用 *** 局部變數:在方法內部定義一個變數,只能在方法內部調用 - 如果在方法的外部調用這個變數,提示出錯 ...
  • relative:相對定位。 1. 不論其父元素和相鄰元素的position是什麼,均相對於自身原來的位置來偏移。 2. 不會脫離文檔流,其原來的位置依然保留著,不會被文檔中其他的元素占用。 3. 原來是行內元素,設置相對定位後,依然是行內元素。 4. 設置了相對定位的塊級元素,如果沒有設置寬度,其 ...
  • 在最近的項目中,引用了vux,在可拓展性以及復用性,都算是比較優秀的框架了。但是美中不足的是對於vux在對於vue-cli3.0的跟進還沒有同步 需要自己做下修改,同比 有贊的vant 以及 iview 都有了對於vue-cli3.0的相容了 現記錄如下: 一、安裝vue-cli 3 首先官方文檔: ...
  • ** js裡面不區分整數和小數 var j = 123; alert(j/1000*1000); //在Java裡面結果是0 //在js裡面不區分整數和小數 123/1000 = 0.123 *1000= 123; ** 字元串的相加和相減的操作 var str = "456"; alert(str ...
  • JavaScript的簡介 * 是基於對象和事件驅動的語言,應用於客戶端 - 基於對象: ** 提供好了很多對象,可以直接拿過來使用 - 事件驅動: ** HTML做網站靜態效果,JavaScript動態效果 - 客戶端:專門指的是瀏覽器 * JavaScript的特點 (1)交互性 - 信息的動態 ...
  • 記得中學的課本上,有一篇名為《狂人日記》課文;那時候根本理解不了魯迅寫這篇文章要表達的中心思想,只覺得滿篇的“吃人”令人心情壓抑;老師在講臺上慷慨激昂的講,大多數的同學同我一樣,在課本面前“痴痴”的發呆。 作為一個有著8年Java編程經驗的IT老兵,說起來很慚愧,我被Java當中的四五個名詞一直困擾 ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...