SSH框架和Redis的整合(1)

来源:http://www.cnblogs.com/mstk/archive/2016/12/27/6226633.html
-Advertisement-
Play Games

一個已有的Struts+Spring+Hibernate項目,以前使用MySQL資料庫,現在想把Redis也整合進去。 1. 相關Jar文件 下載並導入以下3個Jar文件: commons-pool2-2.4.2.jar、jedis-2.3.1.jar、spring-data-redis-1.3.4 ...


一個已有的Struts+Spring+Hibernate項目,以前使用MySQL資料庫,現在想把Redis也整合進去。

1. 相關Jar文件

下載並導入以下3個Jar文件:

commons-pool2-2.4.2.jar、jedis-2.3.1.jar、spring-data-redis-1.3.4.RELEASE.jar。

2. Redis配置文件

在src文件夾下麵新建一個redis.properties文件,設置連接Redis的一些屬性。

redis.host=127.0.0.1   
redis.port=6379 
redis.default.db=1  
redis.timeout=100000  
redis.maxActive=300  
redis.maxIdle=100  
redis.maxWait=1000  
redis.testOnBorrow=true 

再新建一個redis.xml文件。

<?xml version="1.0" encoding="UTF-8"?>   
<beans xmlns="http://www.springframework.org/schema/beans"   
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"   
    xmlns:p="http://www.springframework.org/schema/p"   
    xmlns:context="http://www.springframework.org/schema/context"   
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd   
    http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd">  
 
    <context:property-placeholder location="classpath:redis.properties"/> 
    
    <bean id="propertyConfigurerRedis"  
        class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">  
        <property name="order" value="1" />  
        <property name="ignoreUnresolvablePlaceholders" value="true" />  
        <property name="systemPropertiesMode" value="1" />  
        <property name="searchSystemEnvironment" value="true" />  
        <property name="locations">  
        <list>  
            <value>classpath:redis.properties</value>  
        </list>  
        </property>  
    </bean>
    
    <bean id="jedisPoolConfig"  
        class="redis.clients.jedis.JedisPoolConfig">  
        <property name="maxIdle" value="${redis.maxIdle}" />  
        <property name="testOnBorrow" value="${redis.testOnBorrow}" />  
    </bean>
     
    <bean id="jedisConnectionFactory"  
        class="org.springframework.data.redis.connection.jedis.JedisConnectionFactory">  
        <property name="usePool" value="true"></property>  
        <property name="hostName" value="${redis.host}" />  
        <property name="port" value="${redis.port}" />  
        <property name="timeout" value="${redis.timeout}" />  
        <property name="database" value="${redis.default.db}"></property>  
        <constructor-arg index="0" ref="jedisPoolConfig" />  
    </bean>
    
    <bean id="redisTemplate"  
        class="org.springframework.data.redis.core.StringRedisTemplate"  
        p:connectionFactory-ref="jedisConnectionFactory"  
    >  
    </bean>
        
    <bean id="redisBase" abstract="true">  
        <property name="template" ref="redisTemplate"/>  
    </bean> 
    
    <context:component-scan base-package="com.school.redisclient" />
  
</beans>

3. Redis類

新建一個com.school.redisclient包,結構如下:

介面IRedisService:

public interface IRedisService<K, V> {       
    public void set(K key, V value, long expiredTime);  
    public V get(K key);
    public Object getHash(K key, String name);
    public void del(K key);           
} 

抽象類AbstractRedisService,主要是對RedisTemplate進行操作:

public abstract class AbstractRedisService<K, V> implements IRedisService<K, V> {  
       
       @Autowired  
        private RedisTemplate<K, V> redisTemplate;  
       
        public RedisTemplate<K, V> getRedisTemplate() {  
            return redisTemplate;  
        }  
       
        public void setRedisTemplate(RedisTemplate<K, V> redisTemplate) {  
            this.redisTemplate = redisTemplate;  
        }  
         
        @Override  
        public void set(final K key, final V value, final long expiredTime) {  
            BoundValueOperations<K, V> valueOper = redisTemplate.boundValueOps(key);  
            if (expiredTime <= 0) {  
                valueOper.set(value);  
            } else {  
                valueOper.set(value, expiredTime, TimeUnit.MILLISECONDS);  
            }  
        }  
       
        @Override  
        public V get(final K key) {  
            BoundValueOperations<K, V> valueOper = redisTemplate.boundValueOps(key);  
            return valueOper.get();  
        } 
        
        @Override 
        public Object getHash(K key, String name){
            Object res = redisTemplate.boundHashOps(key).get(name);
            return res;
        }
       
        @Override  
        public void del(K key) {  
            if (redisTemplate.hasKey(key)) {  
                redisTemplate.delete(key);  
            }  
        }   
       
    } 

實現類RedisService:

@Service("redisService")  
public class RedisService extends AbstractRedisService<String, String> {  
  
}

工具類RedisTool:

public class RedisTool {
    
    private static ApplicationContext factory;
    private static RedisService redisService;
    
    public static ApplicationContext getFactory(){
        if (factory == null){
            factory = new ClassPathXmlApplicationContext("classpath:redis.xml");
        }
        return factory;
    }
    
    public static RedisService getRedisService(){
        if (redisService == null){
            redisService = (RedisService) getFactory().getBean("redisService");
        }        
        return redisService;
    }

}

4. 查詢功能的實現

新建一個Action:RClasQueryAction,返回Redis裡面所有的課程數據。

@SuppressWarnings("serial")
public class RClasQueryAction extends ActionSupport {
    
    RedisService rs = RedisTool.getRedisService();
    List<Clas> claslist = new ArrayList<Clas>();
    Clas c;
    
    public String execute(){
        if (rs != null){
            System.out.println("RedisService : " + rs);
            getAllClas();
        }
        ServletActionContext.getRequest().setAttribute("claslist", claslist);
        return SUCCESS;
    }
    
    private void getAllClas(){
        claslist = new ArrayList<Clas>();        
        int num = Integer.parseInt(rs.get("clas:count"));
        for (int i=0; i<num; i++){
            String cid = "clas:" + (i+1);
            c = new Clas();
            int id = Integer.parseInt(String.valueOf(rs.getHash(cid, "ID")));
            c.setId(id);
            System.out.println("ID:" + id);
            String name = (String) rs.getHash(cid, "NAME");
            c.setName(name);
            System.out.println("NAME:" + name);
            String comment = (String) rs.getHash(cid, "COMMENT");
            c.setComment(comment);
            System.out.println("COMMENT:" + comment);
            claslist.add(c);
        }
    }

}

Struts的設置和jsp文件就不詳細講了。

5. Redis資料庫

Redis資料庫裡面的內容(使用的是Redis Desktop Manager):

最後是運行結果:

當然,這隻是實現了從Redis查詢數據,還沒有實現將Redis作為MySQL的緩存。


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

-Advertisement-
Play Games
更多相關文章
  • 在通信雙方中,ServerSocket是伺服器端負責接收的一方,它負責監聽指定埠,其構造函數如下: 1、ServerSocket() throws IOException;無參構造函數,之所以存在主要是因為如果一旦創建好socket,則其選項參數將無法設置,使用該方法可以在指定埠號地址等之前先設 ...
  • 在Spring Mvc + Mybatis的項目中我們有時候需要在測試代碼中註入Dao操作資料庫,對錶進行增刪改查,實現如下: 這是一般的maven項目項目結構 測試代碼一般寫在src/test/java包下。 這是一個普通的測試類,通過mybatis查詢某個表的數據。 如果在初始化spring的時 ...
  • HP-Socket 是一套通用的高性能 TCP/UDP/HTTP 通信框架,包含服務端組件、客戶端組件和 Agent 組件,廣泛適用於各種不同應用場景的 TCP/UDP/HTTP 通信系統,提供 C/C++、C#、Delphi、E(易語言)、Java、Python 等編程語言介面。HP-Socket... ...
  • java學習這一部分其實也算是今天的重點,這一部分用來回答很多群里的朋友所問過的問題,那就是我你是如何學習Java的,能不能給點建議?今天我是打算來點乾貨,因此咱們就不說一些學習方法和技巧了,直接來談每個階段要學習的內容甚至是一些書籍。這一部分的內容,同樣適用於一些希望轉行到Java的同學。 在大家 ...
  • 題目大意: 花花山峰巒起伏,峰頂常年被雪,Memphis打算幫花花山風景區的人員開發一個滑雪項目。 我們可以把風景區看作一個n*n的地圖,每個點有它的初始高度,滑雪只能從高處往低處滑【嚴格大於】。但是由於地勢經常變動【比如雪崩、滑坡】,高度經常變化;同時,政府政策規定對於每個區域都要間歇地進行保護, ...
  • //應用於EasyUI框架 js://圖片上傳 loadPic:function(index){ $('#hrAddTabs').datagrid('selectRow',index); var row = $("#hrAddTabs").datagrid("getSelected"); var c ...
  • 你是不是在為想收集數據而不知道如何收集而著急? 你是不是在為想學習爬蟲而找不到一個專門為小白寫的教程而煩惱? Bingo! 你沒有看錯,這就是專門面向小白學習爬蟲而寫的!我會採用實例的方式,把每個部分都跟實際的例子結合起來幫助小伙伴兒們理解。最後再寫幾個實戰的例子。 我們使用Python來寫爬蟲,一 ...
  • FunDA的特點之一是以數據流方式提供逐行數據操作支持。這項功能解決了FRM如Slick數據操作以SQL批次模式為主所產生的問題。為了實現安全高效的數據行操作,我們必須把FRM產生的Query結果集轉變成一種強類型的結果集,也就是可以欄位名稱進行操作的數據行類型結果集。在前面的一篇討論中我們介紹了通 ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...