註意:本章代碼將會建立在上一章的代碼基礎上,上一章鏈接《第八章 企業項目開發--分散式緩存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中內容的配置,如果需要配置 &時,有兩種方法: 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&useUnicode=true&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>