Maven之自定義pom類型的基礎項目

摘要:在當前的軟件開發場景中,大都是通過maven管理項目,而如果使用maven的話,其實也會有很多問題,比如項目中依賴的版本管理就
是一個很頭疼的事,如果一個項目中有很多人同時開發那么這就很可能造成大家添加的依賴的版本不一致的情況,那樣的話會給項目開發
帶來很多不必要的麻煩,所以為了讓所有的依賴的版本能一致,就需要我們先自定義一個統一依賴版本的基礎項目,其他的項目在引用依賴

的時候直接繼承該項目即可,這樣所有的開發人員使用的依賴版本就能保持一致性。


一:micaicms-pom項目的pom.xml:

<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"><modelVersion>4.0.0</modelVersion><groupId>org.micaicms</groupId><artifactId>micaicms-pom</artifactId><version>1.0</version><packaging>pom</packaging><name>MICAICMS POM</name><description>MICAICMS ROOT POM</description><properties><!-- 前端 Java開發工具 --><!-- 1.Servlet --><servlet-api.version>3.0.1</servlet-api.version><!-- 2.Jsp --><jsp-api.version>2.2</jsp-api.version><!-- 3.Jstl --><jstl.version>1.2</jstl.version><standard.version>1.1.2</standard.version><!-- 4.Echart-java --><ECharts.version>2.1.8.3</ECharts.version><!-- 5.Freemarker --><freemarker.version>2.3.2</freemarker.version><!-- 6.Json --><jackson.version>1.9.13</jackson.version><jackson-databind.version>2.5.1</jackson-databind.version><!-- Spring --><spring-framework.version>4.0.6.RELEASE</spring-framework.version><!-- 面向切面工具 --><aspectjweaver.version>1.8.1</aspectjweaver.version><!-- 文本處理工具 --><!-- 1.Dom4j --><dom4j.version>1.6.1</dom4j.version><!-- 2.Poi --><poi.version>3.10-FINAL</poi.version><!-- 3.IText --><itext.version>5.5.4</itext.version><!-- 數據庫開發工具 --><!-- 1.tomcat-jdbc --><tomcat-jdbc.version>7.0.52</tomcat-jdbc.version><!-- 2.Mybatis --><mybatis.version>3.2.2</mybatis.version><mybatis-paginator.version>1.2.15</mybatis-paginator.version><mybatis-spring.version>1.2.2</mybatis-spring.version><!-- 3.Mysql connector --><mysql-connector.version>5.1.30</mysql-connector.version><!-- 日志工具 --><!-- 1.slf4j --><slf4j.version>1.7.7</slf4j.version><!-- 2.log4j --><log4j.version>2.1</log4j.version><!-- Quartz --><quartz.version>2.1.7</quartz.version><!-- Activiti --><activiti.version>5.16.3</activiti.version><!-- cas_client --><cas_client.version>3.3.0</cas_client.version><!-- Test --><junit.version>4.10</junit.version><!-- JDK --><jdk.version>1.8</jdk.version><!-- 后臺驗證工具 --><!-- 1.hibernate-validator --><hibernate-validator.version>5.1.3.Final</hibernate-validator.version><!-- 文件上傳工具 --><!-- 1.commons-fileupload --><commons-fileupload.version>1.3.1</commons-fileupload.version><!-- 潤乾報表工具 --><!-- 1.runqian_report --><runqian.version>4.5.0-RELEASE</runqian.version><!-- 1.ckeditor --><ckeditor.version>4.4.7</ckeditor.version><!-- 2.bootstrap --><bootstrap.version>3.3.0</bootstrap.version><!-- 3.echarts --><echarts.version>2.1.10</echarts.version><!-- 4.jquery --><jquery.version>1.11.1</jquery.version><!-- 5.jqwidgets --><jqwidgets.version>3.8.0</jqwidgets.version><jquery-ui.version>1.11.1</jquery-ui.version><jquery-form.version>3.51</jquery-form.version><!-- 校驗工具 --><jquery.validate.js.version>1.13.1</jquery.validate.js.version><!-- 文件上傳工具 --><jquery-file-upload.version>9.8.1</jquery-file-upload.version></properties><dependencyManagement><dependencies><!-- 前端 Java開發工具 --><!-- 1.Servlet --><dependency><groupId>javax.servlet</groupId><artifactId>javax.servlet-api</artifactId><version>${servlet-api.version}</version><scope>provided</scope></dependency><!-- 2.Jsp --><dependency><groupId>javax.servlet.jsp</groupId><artifactId>jsp-api</artifactId><version>${jsp-api.version}</version><scope>provided</scope></dependency><!-- 3.jstl --><dependency><groupId>javax.servlet</groupId><artifactId>jstl</artifactId><version>${jstl.version}</version><scope>runtime</scope></dependency><dependency><groupId>taglibs</groupId><artifactId>standard</artifactId><version>${standard.version}</version></dependency><!-- 4.spring-mvc --><dependency><groupId>org.springframework</groupId><artifactId>spring-webmvc</artifactId><version>${spring-framework.version}</version></dependency><!-- 5.Echart-java --><dependency><groupId>com.github.abel533</groupId><artifactId>ECharts</artifactId><version>${ECharts.version}</version></dependency><!-- 6.Freemarker --><dependency><groupId>freemarker</groupId><artifactId>freemarker</artifactId><version>${freemarker.version}</version></dependency><!-- 7.Json --><dependency><groupId>org.codehaus.jackson</groupId><artifactId>jackson-mapper-asl</artifactId><version>${jackson.version}</version></dependency><dependency><groupId>com.fasterxml.jackson.core</groupId><artifactId>jackson-databind</artifactId><version>${jackson-databind.version}</version></dependency><!-- Spring and Transactions --><dependency><groupId>org.springframework</groupId><artifactId>spring-context</artifactId><version>${spring-framework.version}</version></dependency><dependency><groupId>org.springframework</groupId><artifactId>spring-jdbc</artifactId><version>${spring-framework.version}</version></dependency><dependency><groupId>org.springframework</groupId><artifactId>spring-tx</artifactId><version>${spring-framework.version}</version></dependency><dependency><groupId>org.springframework</groupId><artifactId>spring-aop</artifactId><version>${spring-framework.version}</version></dependency><dependency><groupId>org.aspectj</groupId><artifactId>aspectjweaver</artifactId><version>${aspectjweaver.version}</version></dependency><!-- 文本處理 --><!-- 1.Dom4j --><dependency><groupId>dom4j</groupId><artifactId>dom4j</artifactId><version>${dom4j.version}</version></dependency><dependency><groupId>org.springframework</groupId><artifactId>spring-oxm</artifactId><version>${spring-framework.version}</version><exclusions><exclusion><groupId>commons-lang</groupId><artifactId>commons-lang</artifactId></exclusion></exclusions></dependency><!-- 2.Poi --><dependency><groupId>org.apache.poi</groupId><artifactId>poi</artifactId><version>${poi.version}</version></dependency><!-- 3.IText --><dependency><groupId>com.itextpdf</groupId><artifactId>itextpdf</artifactId><version>${itext.version}</version></dependency><!-- 數據庫開發 --><!-- 1.數據庫連接池 --><dependency><groupId>org.apache.tomcat</groupId><artifactId>tomcat-jdbc</artifactId><version>${tomcat-jdbc.version}</version><scope>runtime</scope></dependency><!-- 2.mybatis --><dependency><groupId>org.mybatis</groupId><artifactId>mybatis</artifactId><version>${mybatis.version}</version></dependency><!-- 3.mybatis分頁插件 --><dependency><groupId>com.github.miemiedev</groupId><artifactId>mybatis-paginator</artifactId><version>${mybatis-paginator.version}</version></dependency><!-- 4.mybatis與spring集成 --><dependency><groupId>org.mybatis</groupId><artifactId>mybatis-spring</artifactId><version>${mybatis-spring.version}</version></dependency><!-- 5.Mysql 數據庫驅動 --><dependency><groupId>mysql</groupId><artifactId>mysql-connector-java</artifactId><version>${mysql-connector.version}</version></dependency><!-- Quartz --><dependency><groupId>org.quartz-scheduler</groupId><artifactId>quartz</artifactId><version>${quartz.version}</version></dependency><!-- CAS --><dependency><groupId>org.jasig.cas.client</groupId><artifactId>cas-client-core</artifactId><version>${cas_client.version}</version></dependency><!-- Activiti --><dependency><groupId>org.activiti</groupId><artifactId>activiti-engine</artifactId><version>${activiti.version}</version></dependency><dependency><groupId>org.activiti</groupId><artifactId>activiti-spring</artifactId><version>${activiti.version}</version></dependency><!-- 日志工具 --><dependency><groupId>org.slf4j</groupId><artifactId>slf4j-api</artifactId><version>${slf4j.version}</version></dependency><dependency><groupId>org.apache.logging.log4j</groupId><artifactId>log4j-slf4j-impl</artifactId><version>${log4j.version}</version></dependency><dependency><groupId>org.apache.logging.log4j</groupId><artifactId>log4j-core</artifactId><version>${log4j.version}</version><scope>runtime</scope></dependency><dependency><groupId>org.apache.logging.log4j</groupId><artifactId>log4j-web</artifactId><version>${log4j.version}</version><scope>runtime</scope></dependency><!-- Test Artifacts --><dependency><groupId>org.springframework</groupId><artifactId>spring-test</artifactId><version>${spring-framework.version}</version><scope>test</scope></dependency><dependency><groupId>junit</groupId><artifactId>junit</artifactId><version>${junit.version}</version><scope>test</scope></dependency><!-- 后臺驗證工具 --><dependency><groupId>org.hibernate</groupId><artifactId>hibernate-validator</artifactId><version>${hibernate-validator.version}</version></dependency><!-- 上傳附件工具 --><dependency><groupId>commons-fileupload</groupId><artifactId>commons-fileupload</artifactId><version>${commons-fileupload.version}</version></dependency><!-- 潤乾報表工具 --><dependency><groupId>com.runqian</groupId><artifactId>ruanqian_report</artifactId><version>${runqian.version}</version><type>pom</type></dependency><!-- 1.ckeditor --><dependency><groupId>org.webjars</groupId><artifactId>ckeditor</artifactId><version>${ckeditor.version}</version></dependency><!-- 2.bootstrap --><dependency><groupId>org.webjars</groupId><artifactId>bootstrap</artifactId><version>${bootstrap.version}</version></dependency><!-- 3.echarts --><dependency><groupId>org.webjars</groupId><artifactId>echarts</artifactId><version>${echarts.version}</version></dependency><!-- 4.jquery --><dependency><groupId>org.webjars</groupId><artifactId>jquery</artifactId><version>${jquery.version}</version></dependency><!-- 5.jqwidgets --><dependency><groupId>org.webjars</groupId><artifactId>jqwidgets</artifactId><version>${jqwidgets.version}</version></dependency><dependency><groupId>org.webjars</groupId><artifactId>jquery-ui</artifactId><version>${jquery-ui.version}</version></dependency><dependency><groupId>org.webjars</groupId><artifactId>jquery-form</artifactId><version>${jquery-form.version}</version></dependency><dependency><groupId>org.webjars</groupId><artifactId>jquery.validate.js</artifactId><version>${jquery.validate.js.version}</version></dependency><!-- 文件操作工具 --><dependency><groupId>org.webjars</groupId><artifactId>jquery-file-upload</artifactId><version>${jquery-file-upload.version}</version></dependency></dependencies></dependencyManagement><build><pluginManagement><plugins><plugin><artifactId>maven-eclipse-plugin</artifactId><version>2.9</version><configuration><additionalProjectnatures><projectnature>org.springframework.ide.eclipse.core.springnature</projectnature></additionalProjectnatures><additionalBuildcommands><buildcommand>org.springframework.ide.eclipse.core.springbuilder</buildcommand></additionalBuildcommands><downloadSources>true</downloadSources><downloadJavadocs>true</downloadJavadocs></configuration></plugin><plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-compiler-plugin</artifactId><version>2.5.1</version><configuration><source>${jdk.version}</source><target>${jdk.version}</target><showWarnings>true</showWarnings><showDeprecation>true</showDeprecation><encoding>UTF-8</encoding></configuration></plugin><plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-resources-plugin</artifactId><version>2.7</version></plugin><plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-surefire-plugin</artifactId><version>2.18.1</version></plugin><plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-failsafe-plugin</artifactId><version>2.18.1</version></plugin><plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-verifier-plugin</artifactId><version>1.0</version></plugin><plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-source-plugin</artifactId><version>2.4</version></plugin><plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-javadoc-plugin</artifactId><version>2.10.1</version></plugin><plugin><groupId>org.mybatis.generator</groupId><artifactId>mybatis-generator-maven-plugin</artifactId><version>1.3.0</version><configuration><verbose>true</verbose><overwrite>true</overwrite></configuration></plugin><plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-surefire-report-plugin</artifactId><version>2.18.1</version></plugin><plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-assembly-plugin</artifactId><version>2.5.3</version></plugin><plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-dependency-plugin</artifactId><version>2.10</version></plugin><plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-enforcer-plugin</artifactId><version>1.4</version></plugin><plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-release-plugin</artifactId><version>2.5.1</version></plugin><plugin><groupId>org.codehaus.cargo</groupId><artifactId>cargo-maven2-plugin</artifactId><version>1.4.12</version></plugin><plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-checkstyle-plugin</artifactId><version>2.14</version><dependencies><dependency><groupId>com.puppycrawl.tools</groupId><artifactId>checkstyle</artifactId><version>6.0</version></dependency></dependencies><configuration><encoding>UTF-8</encoding></configuration></plugin><plugin><groupId>org.codehaus.mojo</groupId><artifactId>findbugs-maven-plugin</artifactId><version>3.0.0</version></plugin><plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-scm-plugin</artifactId><version>1.9.2</version></plugin><plugin><groupId>org.codehaus.mojo</groupId><artifactId>exec-maven-plugin</artifactId><version>1.2.1</version></plugin><plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-jar-plugin</artifactId><version>2.5</version></plugin><plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-war-plugin</artifactId><version>2.6</version></plugin><plugin><groupId>org.apache.tomcat.maven</groupId><artifactId>tomcat7-maven-plugin</artifactId><version>2.2</version><configuration><charset>UTF-8</charset></configuration></plugin></plugins></pluginManagement></build><repositories><repository><id>micaicms</id><name>Micaicms Repositories</name><url>http://127.0.0.1:8081/nexus/content/groups/public/</url><releases><enabled>true</enabled></releases><snapshots><enabled>true</enabled></snapshots></repository></repositories><pluginRepositories><pluginRepository><id>Micaicms</id><name>Micaicms Plugin Repositories</name><url>http://127.0.0.1:8081/nexus/content/groups/public/</url><releases><enabled>true</enabled></releases><snapshots><enabled>true</enabled></snapshots></pluginRepository></pluginRepositories><distributionManagement><repository><id>releases</id><name>Micaicms Releases</name><url>http://127.0.0.1:8081/nexus/content/repositories/releases/</url></repository><snapshotRepository><id>snapshots</id><name>Micaicms Releases</name><url>http://127.0.0.1:8081/nexus/content/repositories/snapshots/</url></snapshotRepository></distributionManagement>
</project>


二:micaicms-pom項目的源碼地址: micaicms-pom

本文來自互聯網用戶投稿,該文觀點僅代表作者本人,不代表本站立場。本站僅提供信息存儲空間服務,不擁有所有權,不承擔相關法律責任。
如若轉載,請注明出處:http://www.pswp.cn/news/443428.shtml
繁體地址,請注明出處:http://hk.pswp.cn/news/443428.shtml
英文地址,請注明出處:http://en.pswp.cn/news/443428.shtml

如若內容造成侵權/違法違規/事實不符,請聯系多彩編程網進行投訴反饋email:809451989@qq.com,一經查實,立即刪除!

相關文章

Maven之搭建本地私服(nexus)倉庫

摘要&#xff1a;現在越來越多的項目都在使用Maven管理項目&#xff0c;尤其是在大型的項目團隊中使用Maven能帶來更加多的好處&#xff0c;私服的好處我相信大家都明白&#xff0c;在這里我就不多說了&#xff0c;它最重要的作用就是可以讓項目團隊成員更加方便的下載對應的項…

項目管理4321方法論

文章目錄 一、項目立項準備&#xff08;4步&#xff09;case1、識別價值---解決背后痛點的才是價值&#xff0c;價值是做任何事情的出發點case2、明確目標---支撐價值實現的&#xff0c;目標是 具體/可衡量/可達到/相關性/有時限的case3、識別干系人---找對人才能做對事&#x…

Maven之自定義archetype生成項目骨架(一)

摘要&#xff1a;使用過Maven的人都知道maven中有許多功能都是通過插件來提供的&#xff0c;今天我們來說一下其中的一個插件&#xff1a;maven-archetype-plugin&#xff0c;通過該插件可以自定義符合我們自己需求的archetype。 一:什么是Archetype 總之&#xff0c;原型是一…

匆匆那年之Java程序員之最近兩周的面試總結:

匆匆那年之Java程序員之最近兩周的面試總結&#xff1a; (一):匆匆那年之來帝都之初&#xff1a; 還記得那是2011年的冬天&#xff0c;我們一行20多個同學一起來到了這個一直向往的城市首都&#xff0c;剛到北京是凌晨4點30&#xff0c;負責送我們的老師 已經安排好了我們的住處…

Exception in thread main com.sun.xml.internal.ws.client.ClientTransportException: HTTP transport e

摘要&#xff1a;在調用webservice客戶端代碼的時候報如下錯誤 Invoking reportLossByRdid... Exception in thread "main" com.sun.xml.internal.ws.client.ClientTransportException: HTTP transport error: java.net.UnknownHostException: opacat com.sun.xml.in…

org.springframework.http.converter.HttpMessageNotWritableException:

摘要&#xff1a;在使用SpringHibernate搭建RESTful API時&#xff0c;在Hibernate查詢出數據實體類使用jackson序列化為json時&#xff0c;返回頁面的時候報如下錯誤&#xff1a; 一&#xff1a;錯誤信息&#xff1a; HTTP Status 500 - Could not write JSON: No serializer …

Hessian Binary Web Service Protocol遠程接口調用入門

摘要&#xff1a;Hessian是一個輕量級的remoting onhttp工具&#xff0c;使用簡單的方法提供了RMI的功能. 相比WebService&#xff0c;Hessian更簡單、快捷。采用的是二進制RPC協議&#xff0c;因為采用的是二進制協議&#xff0c;所以它很適合于發送二進制數據。 hessian類似于…

Windows+Nginx+Tomcat搭建負載均衡和集群環境同時實現session共享(一)

摘要&#xff1a;隨著網站的訪問量越來越多&#xff0c;所以就考慮給網站增加服務器了&#xff0c;現在比較流行的做法就是給網站做集群環境&#xff0c;下面我把我做的過程記錄一下&#xff0c;方便日后查看&#xff0c;同時也希望可以幫助到有需要的朋友&#xff01; 一&…

Android開發中調用Spring CXF整合發布的WebService接口為什么拋出異常錯誤?

摘要&#xff1a;最近在協助同事搞Android調用WebService接口&#xff0c;再測試的過程中發現老師報錯&#xff0c;經過baidu&#xff0c;google&#xff0c;終于解決了&#xff0c;現在記錄一下&#xff1a; 一&#xff1a;錯誤信息&#xff1a; 2015-10-28 18:50:39 org.apac…

Eclipse,MyEclipse 安裝SVN插件

摘要&#xff1a;MyEclipse10.5安裝SVN插件最簡單的方式&#xff1a; 一&#xff1a;先到SVN官網下載對應版本的SVN插件包&#xff0c;我這里下載的site-1.10.10版本 下載地址&#xff1a;http://subclipse.tigris.org/servlets/ProjectDocumentList?folderID2240 二&#xf…

MyEclipse 10.5 安裝SVN插件

摘要&#xff1a;MyEclipse10.5安裝SVN插件最簡單的方式&#xff1a; 一&#xff1a;先到SVN官網下載對應版本的SVN插件包&#xff0c;我這里下載的site-1.10.10版本 下載地址&#xff1a;http://subclipse.tigris.org/servlets/ProjectDocumentList?folderID2240 二&#xf…

PHP獲取服務器端的相關信息

摘要&#xff1a;PHP獲取服務端端的相關信息 一&#xff1a;代碼&#xff1a; <!DOCTYPE html> <html> <head><title>第一個PHP程序(獲取服務器信息)</title><meta http-equiv"content-type" content"text/html"; charse…

log4j 標準配置模板:

摘要&#xff1a;log4j在開發中是少不了的&#xff0c;下面貼上我的log4j的配置&#xff0c;該配置文件實現的結果是&#xff0c;每天會生成一個日子文件到指定的目錄下&#xff0c;這樣方便我們隨時查看日志信息&#xff01; log4j.propertieslog4j.rootLoggerINFO,CONSOLE,A …

Sql Server 2005 分頁

摘要&#xff1a;Sql Server 分頁查詢sql! Sql Server 2005分頁查詢數據&#xff0c;適用于手機端和服務器端交互 一&#xff1a;Dao代碼&#xff1a; /*** 分頁查詢研訊分類下的新聞列表*/Overridepublic List<TblNews> getListByYunXunNewId(int cId, int start, int…

Spring+Hibernate+SpringMVC+MySql實現配置多個數據源!

摘要&#xff1a;在日常的工作中&#xff0c;很多時候我們進行項目開發的時候&#xff0c;一個項目有可能不止用到一個數據源&#xff0c;為了提高數據庫的水平伸縮性&#xff0c;需要對多個數據庫實例進行管理&#xff0c;需要配置多數據源! 一&#xff1a;代碼截圖&#xff…

Java之Base64實現文件和字符串之間的轉換

摘要&#xff1a;Java通過Base64加密解密實現文件和字符串之間的轉換&#xff01; Base64.java package com.qdexam.util;import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.OutputS…

app中使用用戶名/郵箱/手機號登錄的思路分析

摘要&#xff1a;app中使用用戶名/郵箱/手機號登錄的思路分析 1.客戶端 客戶端需要傳遞2個參數 account 代表&#xff1a;用戶名/郵箱/手機號 password 代表&#xff1a;密碼這里問題來了&#xff0c;那么如何判斷識別用戶輸入的是用戶名還是郵箱&#xff0c;還是手機號就需要…

java實現ListObject轉List實體類,java實現Object轉對象,java實現Object轉實體類

摘要&#xff1a;在java開發中&#xff0c;我們常常會遇到Object轉對象的情況&#xff0c;最近我就遇到了這個問題&#xff0c;現在記錄一下&#xff0c;方便日后自己查看復習&#xff01; 一&#xff1a;查詢Object類型的集合對象的方法如下&#xff1a; List topicList top…

MySql實現分頁查詢的SQL,mysql實現分頁查詢的sql語句

摘要&#xff1a;MySql數據庫實現分頁查詢的SQL語句寫法&#xff01; 一&#xff1a;分頁需求&#xff1a; 客戶端通過傳遞start(頁碼)&#xff0c;limit(每頁顯示的條數)兩個參數去分頁查詢數據庫表中的數據&#xff0c;那我們知道MySql數據庫提供了分頁的函數limit m,n&…

CentOS下安裝Memcached,Linux下安裝Memcached,centos下安裝memcached,linux下安裝memcached...

摘要&#xff1a;最近在看《大型分布式網站架構設計與實踐》這本書&#xff0c;把其中的學習過程記錄一下&#xff0c;以便日后復習。 一&#xff1a;Memcached簡單介紹和描述&#xff1a; Memcached 是一個高性能的分布式內存對象緩存系統&#xff0c;用于動態Web應用以減輕數…