真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網站制作重慶分公司

redis與ssm如何整合

這篇文章主要介紹redis與ssm如何整合,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

創(chuàng)新互聯(lián)專注于企業(yè)全網營銷推廣、網站重做改版、高郵網站定制設計、自適應品牌網站建設、H5技術、商城開發(fā)、集團公司官網建設、外貿營銷網站建設、高端網站制作、響應式網頁設計等建站業(yè)務,價格優(yōu)惠性價比高,為高郵等各大城市提供網站開發(fā)制作服務。

SSM+redis整合

ssm框架之前已經搭建過了,這里不再做代碼復制工作。

這里主要是利用redis去做mybatis的二級緩存,mybaits映射文件中所有的select都會刷新已有緩存,如果不存在就會新建緩存,所有的insert,update操作都會更新緩存。

redis的好處也顯而易見,可以使系統(tǒng)的數(shù)據訪問性能更高。本節(jié)只是展示了整合方法和效果,后面會補齊redis集群、負載均衡和session共享的文章。

下面就開始整合工作:

redis與ssm如何整合

后臺首先啟動redis-server(后臺啟動與遠程連接linux服務的方法都需要改redis.conf文件),啟動命令“./src/redis-server ./redis.conf”

我這里是windows系統(tǒng)下開發(fā)的,推薦一個可視化工具“Redis Desktop manager”,需要遠程連接linux下的redis,需要linux下開啟端口對外開放(具體方法是修改/etc/sysconfig/iptables文件,增加對外端口開發(fā)命令)。

以上操作都完成后,即可遠程連接成功了,如圖:

redis與ssm如何整合

redis與ssm如何整合

現(xiàn)在還沒有緩存記錄,下面進入代碼階段,首先在pom.xml中增加需要的redis jar包


      redis.clients
      jedis
      2.9.0
    
    
      org.springframework.data
      spring-data-redis
      1.6.2.RELEASE
    
    
      org.mybatis
      mybatis-ehcache
      1.0.0
    
     
    
      com.alibaba
      druid
      1.0.24
    

pom.xml寫好后,還需要新增兩個配置文件:redis.properties

redis.host=192.168.0.109
redis.port=6379
redis.pass=123456
redis.maxIdle=200
redis.maxActive=1024
redis.maxWait=10000
redis.testOnBorrow=true

其中字段也都很好理解,再加入配置文件:spring-redis.xml


  
   
  
    
    
    
  
  
  
    
    
    
     
  
  
  
  
    
  

配置文件寫好后,就開始java代碼的編寫:

JedisClusterFactory.java

package com.cjl.util;
import java.util.HashSet;
import java.util.Properties;
import java.util.Set;
import java.util.regex.Pattern;
import org.apache.commons.pool2.impl.GenericObjectPoolConfig;
import org.springframework.beans.factory.FactoryBean;
import org.springframework.beans.factory.InitializingBean;
import org.springframework.core.io.Resource;
import redis.clients.jedis.HostAndPort;
import redis.clients.jedis.JedisCluster;
public class JedisClusterFactory implements FactoryBean, InitializingBean {
  private Resource addressConfig;
  private String addressKeyPrefix;
  private JedisCluster jedisCluster;
  private Integer timeout;
  private Integer maxRedirections;
  private GenericObjectPoolConfig genericObjectPoolConfig;
  private Pattern p = Pattern.compile("^.+[:]\\d{1,5}\\s*$");
  public JedisCluster getObject() throws Exception {
    return jedisCluster;
  }
  public Class getObjectType() {
    return (this.jedisCluster != null ? this.jedisCluster.getClass() : JedisCluster.class);
  }
  public boolean isSingleton() {
    return true;
  }
  private Set parseHostAndPort() throws Exception {
    try {
      Properties prop = new Properties();
      prop.load(this.addressConfig.getInputStream());
      Set haps = new HashSet();
      for (Object key : prop.keySet()) {
        if (!((String) key).startsWith(addressKeyPrefix)) {
          continue;
        }
        String val = (String) prop.get(key);
        boolean isIpPort = p.matcher(val).matches();
        if (!isIpPort) {
          throw new IllegalArgumentException("ip 或 port 不合法");
        }
        String[] ipAndPort = val.split(":");
        HostAndPort hap = new HostAndPort(ipAndPort[0], Integer.parseInt(ipAndPort[1]));
        haps.add(hap);
      }
      return haps;
    } catch (IllegalArgumentException ex) {
      throw ex;
    } catch (Exception ex) {
      throw new Exception("解析 jedis 配置文件失敗", ex);
    }
  }
  public void afterPropertiesSet() throws Exception {
    Set haps = this.parseHostAndPort();
    jedisCluster = new JedisCluster(haps, timeout, maxRedirections, genericObjectPoolConfig);
  }
  public void setAddressConfig(Resource addressConfig) {
    this.addressConfig = addressConfig;
  }
  public void setTimeout(int timeout) {
    this.timeout = timeout;
  }
  public void setMaxRedirections(int maxRedirections) {
    this.maxRedirections = maxRedirections;
  }
  public void setAddressKeyPrefix(String addressKeyPrefix) {
    this.addressKeyPrefix = addressKeyPrefix;
  }
  public void setGenericObjectPoolConfig(GenericObjectPoolConfig genericObjectPoolConfig) {
    this.genericObjectPoolConfig = genericObjectPoolConfig;
  }
}

RedisCache.java

package com.cjl.util;
import java.util.concurrent.locks.ReadWriteLock;
import java.util.concurrent.locks.ReentrantReadWriteLock;
import org.apache.ibatis.cache.Cache;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.data.redis.connection.jedis.JedisConnection;
import org.springframework.data.redis.connection.jedis.JedisConnectionFactory;
import org.springframework.data.redis.serializer.JdkSerializationRedisSerializer;
import org.springframework.data.redis.serializer.RedisSerializer;
import redis.clients.jedis.exceptions.JedisConnectionException;
public class RedisCache implements Cache {
  private static final Logger logger = LoggerFactory.getLogger(RedisCache.class);
  private static JedisConnectionFactory jedisConnectionFactory;
  private final String id;
  private final ReadWriteLock rwl = new ReentrantReadWriteLock();
  public RedisCache(final String id) {
    if (id == null) {
      throw new IllegalArgumentException("Cache instances require an ID");
    }
    logger.debug("MybatisRedisCache:id=" + id);
    this.id = id;
  }
  /**
   * 清空所有緩存
   */
  public void clear() {
    rwl.readLock().lock();
    JedisConnection connection = null;
    try {
      connection = jedisConnectionFactory.getConnection();
      connection.flushDb();
      connection.flushAll();
    } catch (JedisConnectionException e) {
      e.printStackTrace();
    } finally {
      if (connection != null) {
        connection.close();
      }
      rwl.readLock().unlock();
    }
  }
  public String getId() {
    return this.id;
  }
  /**
   * 獲取緩存總數(shù)量
   */
  public int getSize() {
    int result = 0;
    JedisConnection connection = null;
    try {
      connection = jedisConnectionFactory.getConnection();
      result = Integer.valueOf(connection.dbSize().toString());
      logger.info("添加mybaits二級緩存數(shù)量:" + result);
    } catch (JedisConnectionException e) {
      e.printStackTrace();
    } finally {
      if (connection != null) {
        connection.close();
      }
    }
    return result;
  }
  public void putObject(Object key, Object value) {
    rwl.writeLock().lock();
    JedisConnection connection = null;
    try {
      connection = jedisConnectionFactory.getConnection();
      RedisSerializer serializer = new JdkSerializationRedisSerializer();
      connection.set(SerializeUtil.serialize(key), SerializeUtil.serialize(value));
      logger.info("添加mybaits二級緩存key=" + key + ",value=" + value);
    } catch (JedisConnectionException e) {
      e.printStackTrace();
    } finally {
      if (connection != null) {
        connection.close();
      }
      rwl.writeLock().unlock();
    }
  }
  public Object getObject(Object key) {
    // 先從緩存中去取數(shù)據,先加上讀鎖
    rwl.readLock().lock();
    Object result = null;
    JedisConnection connection = null;
    try {
      connection = jedisConnectionFactory.getConnection();
      RedisSerializer serializer = new JdkSerializationRedisSerializer();
      result = serializer.deserialize(connection.get(serializer.serialize(key)));
      logger.info("命中mybaits二級緩存,value=" + result);
    } catch (JedisConnectionException e) {
      e.printStackTrace();
    } finally {
      if (connection != null) {
        connection.close();
      }
      rwl.readLock().unlock();
    }
    return result;
  }
  public Object removeObject(Object key) {
    rwl.writeLock().lock();
    JedisConnection connection = null;
    Object result = null;
    try {
      connection = jedisConnectionFactory.getConnection();
      RedisSerializer serializer = new JdkSerializationRedisSerializer();
      result = connection.expire(serializer.serialize(key), 0);
    } catch (JedisConnectionException e) {
      e.printStackTrace();
    } finally {
      if (connection != null) {
        connection.close();
      }
      rwl.writeLock().unlock();
    }
    return result;
  }
  public static void setJedisConnectionFactory(JedisConnectionFactory jedisConnectionFactory) {
    RedisCache.jedisConnectionFactory = jedisConnectionFactory;
  }
  public ReadWriteLock getReadWriteLock() {
    // TODO Auto-generated method stub
    return rwl;
  }
}

RedisCacheTransfer.java

package com.cjl.util;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.redis.connection.jedis.JedisConnectionFactory;
/**
 * 靜態(tài)注入中間類
 */
public class RedisCacheTransfer {
   @Autowired
    public void setJedisConnectionFactory(JedisConnectionFactory jedisConnectionFactory) {
      RedisCache.setJedisConnectionFactory(jedisConnectionFactory);
    }
}

SerializeUtil.java

package com.cjl.util;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
/**
 * 
 * @author cjl
 *
 */
public class SerializeUtil {
  /**
   * 序列化
   */
  public static byte[] serialize(Object object) {
    ObjectOutputStream oos = null;
    ByteArrayOutputStream baos = null;
    try {
      // 序列化
      baos = new ByteArrayOutputStream();
      oos = new ObjectOutputStream(baos);
      oos.writeObject(object);
      byte[] bytes = baos.toByteArray();
      return bytes;
    } catch (Exception e) {
      e.printStackTrace();
    }
    return null;
  }
  /**
   *反序列化
   */
  public static Object unserialize(byte[] bytes) {
    if (bytes !=null) {
      ByteArrayInputStream bais = null;
      try {
        // 反序列化
        bais = new ByteArrayInputStream(bytes);
        ObjectInputStream ois = new ObjectInputStream(bais);
        return ois.readObject();
      } catch (Exception e) {
      }
    } 
    return null;
  }
}

所有東西準備齊全后還需要修改映射文件

redis與ssm如何整合

要使mybaits緩存生效,還需如上圖這樣開啟二級緩存。配置文件還需要在web.xml中加載生效

redis與ssm如何整合

一切準備就緒后,啟動服務

redis與ssm如何整合

啟動成功后,點擊員工表單可以觸發(fā)查詢所有員工的方法,第一次進行查詢語句可以看到mybatis打印了查詢語句,并在redis服務器中更新了一條緩存

redis與ssm如何整合

redis與ssm如何整合

我們清空控制臺再次點擊查詢員工按鈕執(zhí)行查詢方法,可以看到沒有執(zhí)行查詢語句,證明第二次查詢直接從緩存中取值,沒有連接MySQL進行查詢。

redis與ssm如何整合

以上是“redis與ssm如何整合”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注創(chuàng)新互聯(lián)行業(yè)資訊頻道!


文章題目:redis與ssm如何整合
網頁鏈接:http://weahome.cn/article/ijejog.html

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部