濮阳杆衣贸易有限公司

主頁 > 知識庫 > 詳解SSH框架和Redis的整合

詳解SSH框架和Redis的整合

熱門標(biāo)簽:地圖標(biāo)注費用 百度商家地圖標(biāo)注怎么做 玄武湖地圖標(biāo)注 太原營銷外呼系統(tǒng) 地圖標(biāo)注如何即時生效 小紅書怎么地圖標(biāo)注店 最簡單的百度地圖標(biāo)注 西藏教育智能外呼系統(tǒng)價格 竹間科技AI電銷機器人

一個已有的Struts+Spring+Hibernate項目,以前使用MySQL數(shù)據(jù)庫,現(xiàn)在想把Redis也整合進去。

1. 相關(guān)Jar文件

下載并導(dǎo)入以下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文件,設(shè)置連接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包,結(jié)構(gòu)如下:

接口IRedisService:

public interface IRedisServiceK, 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 AbstractRedisServiceK, V> implements IRedisServiceK, V> { 
  @Autowired 
  private RedisTemplateK, V> redisTemplate; 
  
  public RedisTemplateK, V> getRedisTemplate() { 
   return redisTemplate; 
  }   
  public void setRedisTemplate(RedisTemplateK, V> redisTemplate) { 
   this.redisTemplate = redisTemplate; 
  }   
  @Override 
  public void set(final K key, final V value, final long expiredTime) { 
   BoundValueOperationsK, 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) { 
   BoundValueOperationsK, 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); 
   } 
  } 
  
 } 

實現(xiàn)類RedisService:

@Service("redisService") 
public class RedisService extends AbstractRedisServiceString, 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. 查詢功能的實現(xiàn)

新建一個Action:RClasQueryAction,返回Redis里面所有的課程數(shù)據(jù)。

@SuppressWarnings("serial")
public class RClasQueryAction extends ActionSupport {
  RedisService rs = RedisTool.getRedisService();
 ListClas> claslist = new ArrayListClas>();
 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 ArrayListClas>();  
  int num = Integer.parseInt(rs.get("clas:count"));
  for (int i=0; inum; 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的設(shè)置和jsp文件就不詳細講了。

5. Redis數(shù)據(jù)庫

Redis數(shù)據(jù)庫里面的內(nèi)容(使用的是Redis Desktop Manager):

最后是運行結(jié)果:

當(dāng)然,這只是實現(xiàn)了從Redis查詢數(shù)據(jù),還沒有實現(xiàn)將Redis作為MySQL的緩存。

5. 添加功能的實現(xiàn)

新建一個Action:RClasAction,實現(xiàn)向Redis添加課程數(shù)據(jù),并同步到MySQL。

package com.school.action;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import com.opensymphony.xwork2.ActionSupport;
import com.school.entity.Clas;
import com.school.redisclient.RedisService;
import com.school.redisclient.RedisTool;
import com.school.service.ClasService;
@SuppressWarnings("serial")
public class RClasAction extends ActionSupport { 
 @Autowired
 private ClasService clasService; 
 RedisService rs = RedisTool.getRedisService();
 ListClas> claslist = new ArrayListClas>(); 
 private Clas clas;
 public Clas getClas() {
  return clas;
 } 
 public void setClas(Clas Clas) {
  this.clas = Clas;
 } 
 public String execute(){
  saveClas(clas);
  return SUCCESS;
 } 
 @SuppressWarnings({ "rawtypes", "unchecked" })
 private void saveClas(Clas c){
  ListString> ids = rs.getList("clas:id");
  // clas:id
  int num = ids.size();
  int id = Integer.parseInt(ids.get(num-1)) + 1;
  rs.rightPushList("clas:id", String.valueOf(id));
  // clas:count
  int count = Integer.parseInt(rs.get("clas:count"));
  rs.set("clas:count", String.valueOf(count+1), -1);
  // 增加
  HashMap hashmap = new HashMap();
  hashmap.put("ID", String.valueOf(id));
  hashmap.put("NAME", clas.getName());
  hashmap.put("COMMENT", clas.getComment());
  rs.addHash("clas:" + id, hashmap);
  // 同步到MySQL
  clasService.saveClas(clas);
 }
}

clas:id是一個List類型的Key-Value,記錄了所有的課程ID,取出最后一個ID,再+1,作為增加的課程的ID,同時clas:count的值也要+1。使用addHash()方法向Redis添加了一個Hash類型的Key-Value(也就是一門課程):

  @SuppressWarnings({ "unchecked", "rawtypes" })
  public synchronized void addHash(K key, HashMap map){
   redisTemplate.opsForHash().putAll(key, map);
  }

同時將該門課程增加到MySQL。

6. 刪除功能的實現(xiàn)

新建一個Action:RClasDeleteAction,實現(xiàn)刪除Redis的課程數(shù)據(jù),并同步到MySQL。

package com.school.action;
import org.springframework.beans.factory.annotation.Autowired;
import com.opensymphony.xwork2.ActionSupport;
import com.school.redisclient.RedisService;
import com.school.redisclient.RedisTool;
import com.school.service.ClasService;
@SuppressWarnings("serial")
public class RClasDeleteAction extends ActionSupport { 
 @Autowired
 private ClasService clasService; 
 RedisService rs = RedisTool.getRedisService() 
 private int id;
 public int getId(){
  return id;
 }
 public void setId(int id){
  this.id=id;
 } 
 public String execute(){ 
  deleteClas(id);
  // 同步到MySQL
  clasService.deleteClas(id);
  return SUCCESS;
 }
 private void deleteClas(int id){
  // 刪除
  rs.del("clas:" + id);
  // clas:count
  int count = Integer.parseInt(rs.get("clas:count"));
  rs.set("clas:count", String.valueOf(count-1), -1);
  // clas:id
  rs.delListItem("clas:id", String.valueOf(id));
 }
}

直接刪除clas:id,再將clas:count的值-1,這兩步比較簡單,復(fù)雜的是從clas:id中刪除該課程的ID,使用了delListItem()方法來實現(xiàn):

  @Override
  public synchronized void delListItem(K key, V value){
   redisTemplate.opsForList().remove(key, 1, value);
  }

redisTemplate.opsForList().remove()方法類似于LREM命令。最后在MySQL中也刪除相同的課程。

7. 修改功能的實現(xiàn)

新建一個Action:RClasUpdateAction,實現(xiàn)刪除Redis的課程數(shù)據(jù),并同步到MySQL。

package com.school.action;

import java.util.HashMap;

import org.springframework.beans.factory.annotation.Autowired;

import com.opensymphony.xwork2.ActionSupport;
import com.school.entity.Clas;
import com.school.redisclient.RedisService;
import com.school.redisclient.RedisTool;
import com.school.service.ClasService;

@SuppressWarnings("serial")
public class RClasUpdateAction extends ActionSupport{ 
 @Autowired
 private ClasService clasService; 
 RedisService rs = RedisTool.getRedisService(); 
 private Clas clas;
 public Clas getClas() {
  return clas;
 }
 public void setClas(Clas clas) {
  this.clas = clas;
 }
  @SuppressWarnings({ "unchecked", "rawtypes" })
 public String execute(){
  HashMap hashmap = new HashMap();
  hashmap.put("ID", String.valueOf(clas.getId()));
  hashmap.put("NAME", clas.getName());
  hashmap.put("COMMENT", clas.getComment());
  rs.putHash("clas:" + clas.getId(), hashmap);
  // 同步到MySQL
  clasService.updateClas(clas);
  return SUCCESS;
 }

}

使用了putHash()方法來更新:

  @SuppressWarnings({ "rawtypes", "unchecked" })
  @Override
  public synchronized void putHash(K key, HashMap map){
   redisTemplate.boundHashOps(key).putAll(map);
  }

 同時在MySQL做相同的更新操作。

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

您可能感興趣的文章:
  • JSP 開發(fā)SSH整合異常解決辦法
  • MyEclipse整合ssh三大框架環(huán)境搭載用戶注冊源碼下載
  • SSH框架網(wǎng)上商城項目第7戰(zhàn)之整合Struts2和Json
  • SSH框架網(wǎng)上商城項目第1戰(zhàn)之整合Struts2、Hibernate4.3和Spring4.2
  • SSH+Jquery+Ajax框架整合
  • SSH整合中 hibernate托管給Spring得到SessionFactory
  • 詳解JAVAEE——SSH三大框架整合(spring+struts2+hibernate)

標(biāo)簽:揚州 景德鎮(zhèn) 香港 澳門 林芝 廣東 贛州 唐山

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《詳解SSH框架和Redis的整合》,本文關(guān)鍵詞  詳解,SSH,框架,和,Redis,的,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《詳解SSH框架和Redis的整合》相關(guān)的同類信息!
  • 本頁收集關(guān)于詳解SSH框架和Redis的整合的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章
    禄劝| 锦州市| 承德县| 茌平县| 绥芬河市| 黎城县| 乌鲁木齐县| 浮山县| 武功县| 雷山县| 咸宁市| 屯留县| 资中县| 吉林省| 大渡口区| 山东| 仙游县| 习水县| 金门县| 凤凰县| 沙雅县| 南昌县| 南靖县| 马鞍山市| 金乡县| 辉县市| 辉南县| 正蓝旗| 房产| 库伦旗| 察哈| 雅江县| 永春县| 武邑县| 自治县| 九江市| 高陵县| 古田县| 当雄县| 灵石县| 晋江市|