第九章 企業項目開發--分散式緩存Redis(1)

来源:http://www.cnblogs.com/java-zhao/archive/2016/01/28/5166931.html
-Advertisement-
Play Games

註意:本章代碼將會建立在上一章的代碼基礎上,上一章鏈接《第八章 企業項目開發--分散式緩存memcached》 1、為什麼用Redis 1.1、為什麼用分散式緩存(或者說本地緩存存在的問題)? 見《第八章 企業項目開發--分散式緩存memcached》 1.2、有了memcached,為什麼還要用r


註意:本章代碼將會建立在上一章的代碼基礎上,上一章鏈接《第八章 企業項目開發--分散式緩存memcached

1、為什麼用Redis

1.1、為什麼用分散式緩存(或者說本地緩存存在的問題)?

1.2、有了memcached,為什麼還要用redis?

 

2、代碼實現

2.1、ssmm0

pom.xml

只在dev環境下添加了以下代碼:

                <!-- 
                    redis:多台伺服器支架用什麼符號隔開無所謂,只要在程式中用相應的符號去分隔就好。
                    這裡只配置了一個redis.servers,如果系統特別大的時候,可以為每一種業務或某幾種業務配置一個redis.xxx.servers 
                -->
                <redis.servers><![CDATA[127.0.0.1:6379]]></redis.servers>
                <!-- 
                    下邊各個參數的含義在RedisFactory.java中有介紹,
                    當我們三種環境(dev/rc/prod)下的一些參數都相同時,可以將這些參數直接設置到cache_conf.properties文件中去
                -->
                <redis.timeout>2000</redis.timeout><!-- 操作超時時間:2s,單位:ms -->
                <redis.conf.lifo>true</redis.conf.lifo>
                <redis.conf.maxTotal>64</redis.conf.maxTotal>
                <redis.conf.blockWhenExhausted>true</redis.conf.blockWhenExhausted>
                <redis.conf.maxWaitMillis>-1</redis.conf.maxWaitMillis>
                
                <redis.conf.testOnBorrow>false</redis.conf.testOnBorrow>
                <redis.conf.testOnReturn>false</redis.conf.testOnReturn>
                
                <!-- 空閑連接相關 -->
                <redis.conf.maxIdle>8</redis.conf.maxIdle>
                <redis.conf.minIdle>0</redis.conf.minIdle>
                <redis.conf.testWhileIdle>true</redis.conf.testWhileIdle>
                <redis.conf.timeBetweenEvictionRunsMillis>30000</redis.conf.timeBetweenEvictionRunsMillis><!-- 30s -->
                <redis.conf.numTestsPerEvictionRun>8</redis.conf.numTestsPerEvictionRun>
                <redis.conf.minEvictableIdleTimeMillis>60000</redis.conf.minEvictableIdleTimeMillis><!-- 60s -->
View Code

註意:看註釋。

完整版的根pom.xml

<?xml version="1.0" encoding="UTF-8"?>
<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/maven-v4_0_0.xsd">

    <modelVersion>4.0.0</modelVersion>

    <groupId>com.xxx</groupId>
    <artifactId>ssmm0</artifactId>
    <version>1.0-SNAPSHOT</version>

    <name>ssmm0</name>
    <packaging>pom</packaging><!-- 父模塊 -->

    <!-- 管理子模塊 -->
    <modules>
        <module>userManagement</module><!-- 具體業務1-人員管理系統 -->
        <module>data</module><!-- 封裝數據操作 -->
        <module>cache</module><!-- 緩存模塊 -->
    </modules>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
    </properties>

    <!-- dependencyManagement不會引入實際的依賴,只是作為一個依賴池,供其和其子類使用 -->
    <dependencyManagement>
        <dependencies>
            <!-- json -->
            <dependency>
                <groupId>com.alibaba</groupId>
                <artifactId>fastjson</artifactId>
                <version>1.1.39</version>
            </dependency>
            <!-- servlet -->
            <dependency>
                <groupId>javax.servlet</groupId>
                <artifactId>javax.servlet-api</artifactId>
                <version>3.0.1</version>
                <scope>provided</scope>
            </dependency>
            <!-- spring -->
            <dependency>
                <groupId>org.springframework</groupId>
                <artifactId>spring-core</artifactId>
                <version>3.2.6.RELEASE</version>
            </dependency>
            <dependency>
                <groupId>org.springframework</groupId>
                <artifactId>spring-beans</artifactId>
                <version>3.2.6.RELEASE</version>
            </dependency>
            <dependency>
                <groupId>org.springframework</groupId>
                <artifactId>spring-context</artifactId>
                <version>3.2.6.RELEASE</version>
            </dependency>
            <dependency>
                <groupId>org.springframework</groupId>
                <artifactId>spring-web</artifactId>
                <version>3.2.6.RELEASE</version>
            </dependency>
            <dependency>
                <groupId>org.springframework</groupId>
                <artifactId>spring-webmvc</artifactId>
                <version>3.2.6.RELEASE</version>
            </dependency>
            <!-- 這個是使用velocity的必備包 -->
            <dependency>
                <groupId>org.springframework</groupId>
                <artifactId>spring-context-support</artifactId>
                <version>3.2.6.RELEASE</version>
            </dependency>
            <!-- mysql -->
            <dependency>
                <groupId>mysql</groupId>
                <artifactId>mysql-connector-java</artifactId>
                <version>5.1.27</version>
                <scope>runtime</scope>
            </dependency>
            <!-- 數據源 -->
            <dependency>
                <groupId>org.apache.tomcat</groupId>
                <artifactId>tomcat-jdbc</artifactId>
                <version>7.0.47</version>
            </dependency>
            <!-- mybatis -->
            <dependency>
                <groupId>org.mybatis</groupId>
                <artifactId>mybatis</artifactId>
                <version>3.1.1</version>
            </dependency>
            <dependency>
                <groupId>org.mybatis</groupId>
                <artifactId>mybatis-spring</artifactId>
                <version>1.1.1</version>
            </dependency>
            <!-- velocity -->
            <dependency>
                <groupId>org.apache.velocity</groupId>
                <artifactId>velocity</artifactId>
                <version>1.5</version>
            </dependency>
            <dependency>
                <groupId>velocity-tools</groupId>
                <artifactId>velocity-tools-generic</artifactId>
                <version>1.2</version>
            </dependency>
            <!-- 用於加解密 -->
            <dependency>
                <groupId>commons-codec</groupId>
                <artifactId>commons-codec</artifactId>
                <version>1.7</version>
            </dependency>
            <dependency>
                <groupId>org.bouncycastle</groupId>
                <artifactId>bcprov-jdk15on</artifactId>
                <version>1.47</version>
            </dependency>
            <!-- 集合工具類 -->
            <dependency>
                <groupId>org.apache.commons</groupId>
                <artifactId>commons-collections4</artifactId>
                <version>4.0</version>
            </dependency>
            <!-- 字元串處理類 -->
            <dependency>
                <groupId>org.apache.commons</groupId>
                <artifactId>commons-lang3</artifactId>
                <version>3.4</version>
            </dependency>
            <!-- http -->
            <dependency>
                <groupId>org.apache.httpcomponents</groupId>
                <artifactId>httpclient</artifactId>
                <version>4.2.6</version>
            </dependency>
        </dependencies>
    </dependencyManagement>

    <!-- 引入實際依賴 -->
    <dependencies>
        <!-- json -->
        <dependency>
            <groupId>com.alibaba</groupId>
            <artifactId>fastjson</artifactId>
        </dependency>
        <!-- spring -->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-core</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-beans</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context</artifactId>
        </dependency>
        <!-- 集合工具類 -->
        <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-collections4</artifactId>
        </dependency>
        <!-- 字元串處理類 -->
        <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-lang3</artifactId>
        </dependency>
    </dependencies>

    <build>
        <resources>
            <!-- 這裡配置了這一塊兒true,才可以讓指定文件(這裡是src/main/resources/spring-data.xml)讀到pom.xml中的配置信息 
                , 值得註意的是,如果src/main/resources下還有其他文件,而你不想讓其讀pom.xml, 你還必須得把src/main/resources下的其餘文件再配置一遍,配置為false(不可讀pom.xml), 
                如下邊的註釋那樣,否則,會報這些文件找不到的錯誤 
            -->
            <resource>
                <directory>src/main/resources</directory>
                <filtering>true</filtering>
                <includes>
                    <include>*.xml</include>
                    <include>*.properties</include>
                </includes>
            </resource>
            <!-- 
            <resource> 
                <directory>src/main/resources</directory> 
                <filtering>false</filtering>   
                <includes> 
                    <include>*.properties</include> 
                </includes> 
            </resource> 
            -->
            <resource> 
                <directory>src/main/resources</directory> 
                <filtering>false</filtering>   
                <includes> 
                <!-- 這裡如果不加這一條,那麼在spring-data.xml中配置的xml將找不到classpath:mapper/admin/AdminMapper.xml -->
                    <include>mapper/**/*.xml</include> 
                </includes> 
            </resource> 
        </resources>
    </build>

    <!-- 
        profiles可以定義多個profile,然後每個profile對應不同的激活條件和配置信息,從而達到不同環境使用不同配置信息的效果 
        註意兩點: 
        1)<activeByDefault>true</activeByDefault>這種情況表示伺服器啟動的時候就採用這一套env(在這裡,就是prod) 
        2)當我們啟動伺服器後,想採用開發模式,需切換maven的env為dev,如果env的配置本身就是dev,需要將env換成rc或prod,點擊apply,然後再將env切換成dev,點擊apply才行 
    -->
    <profiles>
        <!-- 開發env -->
        <profile>
            <id>dev</id>
            <activation>
                <!-- 這裡為了測試方便,改為了true,在上線的時候一定要改成false,否則線上使用的就是這一套dev的環境了 -->
                <activeByDefault>true</activeByDefault>
                <property>
                    <name>env</name>
                    <value>dev</value>
                </property>
            </activation>
            <properties>
                <env>dev</env>

                <jdbc.driverClassName>com.mysql.jdbc.Driver</jdbc.driverClassName>
                <!--
                     對於jdbc.url中內容的配置,如果需要配置 &amp;時,有兩種方法:
                    1)如下邊這樣,使用<![CDATA[XXX]]>包起來 
                    2)使用jdbc.properties文件來讀取此pom.xml,然後spring.xml再讀取jdbc.properties文件 顯然,前者更方便,而且還省了一個jdbc.properties的文件,但是,有的時候,還是會用後者的; 
                    在使用後者的時候,註意三點:
                    1)需要修改上邊的build中的內容 
                    2)需要在spring.xml中配置<context:property-placeholder location="classpath:jdbc.properties"/> 
                    3)將jdbc.properties放在ssmm0-data項目中,之後需要將ssmm0-data項目的env配置為dev 
                -->
                <jdbc.url><![CDATA[jdbc:mysql://127.0.0.1:3306/blog?zeroDateTimeBehavior=convertToNull&amp;useUnicode=true&amp;characterEncoding=utf-8]]></jdbc.url>
                <jdbc.username>root</jdbc.username>
                <jdbc.password>123456</jdbc.password>
                
                <!-- memcache,多台伺服器之間需要使用空格隔開,而不要使用英文逗號隔開,因為Xmemcached的AddrUtil源碼是根據空格隔開的 -->
                <memcached.servers><![CDATA[127.0.0.1:11211]]></memcached.servers>
                <memcached.max.client>10</memcached.max.client><!-- 最多的客戶端數 -->
                <memcached.expiretime>900</memcached.expiretime><!-- 過期時間900s -->
                <memcached.hash.consistent>true</memcached.hash.consistent><!-- 是否使用一致性hash演算法 -->
                <memcached.connection.poolsize>1</memcached.connection.poolsize><!-- 每個客戶端池子的連接數 -->
                <memcached.op.timeout>2000</memcached.op.timeout><!-- 操作超時時間 -->
                
                <!-- 
                    redis:多台伺服器支架用什麼符號隔開無所謂,只要在程式中用相應的符號去分隔就好。
                    這裡只配置了一個redis.servers,如果系統特別大的時候,可以為每一種業務或某幾種業務配置一個redis.xxx.servers 
                -->
                <redis.servers><![CDATA[127.0.0.1:6379]]></redis.servers>
                <!-- 
                    下邊各個參數的含義在RedisFactory.java中有介紹,
                    當我們三種環境(dev/rc/prod)下的一些參數都相同時,可以將這些參數直接設置到cache_conf.properties文件中去
                -->
                <redis.timeout>2000</redis.timeout><!-- 操作超時時間:2s,單位:ms -->
                <redis.conf.lifo>true</redis.conf.lifo>
                <redis.conf.maxTotal>64</redis.conf.maxTotal>
                <redis.conf.blockWhenExhausted>true</redis.conf.blockWhenExhausted>
                <redis.conf.maxWaitMillis>-1</redis.conf.maxWaitMillis>
                
                <redis.conf.testOnBorrow>false</redis.conf.testOnBorrow>
                <redis.conf.testOnReturn>false</redis.conf.testOnReturn>
                
                <!-- 空閑連接相關 -->
                <redis.conf.maxIdle>8</redis.conf.maxIdle>
                <redis.conf.minIdle>0</redis.conf.minIdle>
                <redis.conf.testWhileIdle>true</redis.conf.testWhileIdle>
                <redis.conf.timeBetweenEvictionRunsMillis>30000</redis.conf.timeBetweenEvictionRunsMillis><!-- 30s -->
                <redis.conf.numTestsPerEvictionRun>8</redis.conf.numTestsPerEvictionRun>
                <redis.conf.minEvictableIdleTimeMillis>60000</redis.conf.minEvictableIdleTimeMillis><!-- 60s -->
            </properties>
        </profile>
        <!-- 預上線env -->
        <profile>
            <id>rc</id>
            <activation>
                <activeByDefault>false</activeByDefault>
          

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

-Advertisement-
Play Games
更多相關文章
  • 00前言 我相信能夠輕鬆地構建高質量增長的web應用程式是至關重要的一個自由和開放的社會。這可以防止玩家最大的壟斷信息的流通。 因此我從2007年開始web2py項目,主要是作為一種教學工具與簡化web開發的目標,更快,更安全。隨著時間的流逝,它已經成功地贏得成千上萬的情感知識淵博的用戶和數百名開發
  • 1 public class Stack { 2 private int maxSize=2;//棧容量,初始為2,(用於表達式求值,操作數棧) 3 private int top=-1;//棧頂指針 4 private int[] data=new int[maxSize];//數據 5 //判空
  • foreach迴圈時動態往數組裡添加數據,有一次做項目中,foreach的時候需要動態往數組裡添加數據(我們這裡隨便舉個例子) 結果: 哎?奇了怪了,這說明foreach迴圈時可以動態的往數組裡添加數據,為什麼$arr的數據確實被添加上了,但是沒有被foreach迴圈出來呢?網上查找得知,forea
  • zookeeper結合PropertyPlaceholderConfigurer實現的統一配置組件,巧妙的應用了PropertyPlaceholderConfigurer搜索多種數據源的優勢,且對原有代碼沒有任務的侵入性。
  • 語法 awk [ -F re] [parameter...] ['pattern {action}' ] [-f progfile][in_file...] 獲得普通外部變數 [xingxing.dxx@30_28_6_20 ~]$ test='test code' [xingxing.dxx@30
  • 漢字元在IntelliJ的控制台輸出亂碼。編譯器在編譯的時候,把漢字元編譯成非UTF-8而引起亂碼。我是在做Jsoup解析的時候出現的錯誤,其實歸根結底確實編譯器的原因。 解決方法: 1.修改.idea/encoding.xml。將對應工程的編碼方式(如GBK)改為UTF-8; 2.如果是Maven
  • 1, Swift 修改導航欄顏色 self.navigationController?.navigationBar.barTintColor 2, Swift button 屬性設置時直接進行初始化 var leftButton : UIButton = UIButton(type: UIButto
  • 1、建立DLL動態庫 動態鏈接庫(DLL)是從C語言函數庫和Pascal庫單元的概念發展而來的。所有的C語言標準庫函數都存放在某一函數庫中。在鏈接應用程式的過程中,鏈接器從庫文件中拷貝程式調用的函數代碼,並把這些函數代碼添加到可執行文件中。這種方法同只把函數儲存在已編譯的OBJ文件中相比更有利於代碼
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...