返回顶部
首页 > 资讯 > 精选 >redis与ssm如何整合
  • 875
分享到

redis与ssm如何整合

ssmredis 2023-05-30 18:05:07 875人浏览 安东尼
摘要

这篇文章主要介绍redis与SSM如何整合,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!SSM+Redis整合ssm框架之前已经搭建过了,这里不再做代码复制工作。这里主要是利用redis去做mybatis的二级缓存,

这篇文章主要介绍redisSSM如何整合,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!

SSM+Redis整合

ssm框架之前已经搭建过了,这里不再做代码复制工作。

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

redis的好处也显而易见,可以使系统的数据访问性能更高。本节只是展示了整合方法和效果,后面会补齐redis集群负载均衡和session共享的文章。

下面就开始整合工作:

redis与ssm如何整合

后台首先启动redis-server(后台启动与远程连接linux服务的方法都需要改redis.conf文件),启动命令“./src/redis-server ./redis.conf”

我这里是windows系统下开发的,推荐一个可视化工具“Redis Desktop manager”,需要远程连接linux下的redis,需要linux下开启端口对外开放(具体方法是修改/etc/sysconfig/iptables文件,增加对外端口开发命令)。

以上操作都完成后,即可远程连接成功了,如图:

redis与ssm如何整合

redis与ssm如何整合

现在还没有缓存记录,下面进入代码阶段,首先在pom.xml中增加需要的redis jar

<dependency>      <groupId>redis.clients</groupId>      <artifactId>jedis</artifactId>      <version>2.9.0</version>    </dependency>    <dependency>      <groupId>org.springframework.data</groupId>      <artifactId>spring-data-redis</artifactId>      <version>1.6.2.RELEASE</version>    </dependency>    <dependency>      <groupId>org.mybatis</groupId>      <artifactId>mybatis-ehcache</artifactId>      <version>1.0.0</version>    </dependency>     <!-- 添加druid连接池包 -->    <dependency>      <groupId>com.alibaba</groupId>      <artifactId>druid</artifactId>      <version>1.0.24</version>    </dependency>

pom.xml写好后,还需要新增两个配置文件:redis.properties

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

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

<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:mvc="http://www.springframework.org/schema/mvc" xmlns:util="http://www.springframework.org/schema/util" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:context="http://www.springframework.org/schema/context" xmlns:task="http://www.springframework.org/schema/task"  xsi:schemaLocation="http://www.springframework.org/schema/beans   http://www.springframework.org/schema/beans/spring-beans-4.3.xsd   http://www.springframework.org/schema/util   http://www.springframework.org/schema/util/spring-util-4.3.xsd   http://www.springframework.org/schema/mvc   http://www.springframework.org/schema/mvc/spring-mvc-4.3.xsd   http://www.springframework.org/schema/aop   http://www.springframework.org/schema/aop/spring-aop-4.3.xsd   http://www.springframework.org/schema/context   http://www.springframework.org/schema/context/spring-context-4.3.xsd">  <!-- 连接池基本参数配置,类似数据库连接池 -->   <context:property-placeholder location="classpath*:redis.properties" />  <bean id="poolConfig" class="redis.clients.jedis.JedisPoolConfig">    <property name="maxTotal" value="${redis.maxActive}"/>    <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="hostName" value="${redis.host}"></property>    <property name="port" value="${redis.port}"></property>    <property name="passWord" value="${redis.pass}"></property>    <property name="poolConfig" ref="poolConfig"></property>   </bean>  <!-- 调用连接池工厂配置 -->  <!-- <bean id="redisTemplate" class=" org.springframework.data.redis.core.RedisTemplate">    <property name="jedisConnectionFactory" ref="jedisConnectionFactory"></property>    如果不配置Serializer,那么存储的时候智能使用String,如果用User类型存储,那么会提示错误User can't cast to String!!!      <property name="keySerializer">       <bean       class="org.springframework.data.redis.serializer.StringRedisSerializer" />     </property>     <property name="valueSerializer">       <bean         class="org.springframework.data.redis.serializer.jdkSerializationRedisSerializer" />     </property>   </bean> -->  <bean id="redisCacheTransfer" class="com.cjl.util.RedisCacheTransfer">    <property name="jedisConnectionFactory" ref="jedisConnectionFactory" />  </bean></beans>

配置文件写好后,就开始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<JedisCluster>, 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<? extends JedisCluster> getObjectType() {    return (this.jedisCluster != null ? this.jedisCluster.getClass() : JedisCluster.class);  }  public boolean isSingleton() {    return true;  }  private Set<HostAndPort> parseHostAndPort() throws Exception {    try {      Properties prop = new Properties();      prop.load(this.addressConfig.getInputStream());      Set<HostAndPort> haps = new HashSet<HostAndPort>();      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<HostAndPort> 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;  }    public int getSize() {    int result = 0;    JedisConnection connection = null;    try {      connection = jedisConnectionFactory.getConnection();      result = Integer.valueOf(connection.dbSize().toString());      logger.info("添加mybaits二级缓存数量:" + 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<Object> 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) {    // 先从缓存中去取数据,先加上读    rwl.readLock().lock();    Object result = null;    JedisConnection connection = null;    try {      connection = jedisConnectionFactory.getConnection();      RedisSerializer<Object> 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<Object> 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;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;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如何整合

启动成功后,点击员工表单可以触发查询所有员工的方法,第一次进行查询语句可以看到mybatis打印了查询语句,并在redis服务器中更新了一条缓存

redis与ssm如何整合

redis与ssm如何整合

我们清空控制台再次点击查询员工按钮执行查询方法,可以看到没有执行查询语句,证明第二次查询直接从缓存中取值,没有连接mysql进行查询。

redis与ssm如何整合

以上是“redis与ssm如何整合”这篇文章的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注编程网精选频道!

--结束END--

本文标题: redis与ssm如何整合

本文链接: https://lsjlt.com/news/220382.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
  • redis与ssm如何整合
    这篇文章主要介绍redis与ssm如何整合,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!SSM+redis整合ssm框架之前已经搭建过了,这里不再做代码复制工作。这里主要是利用redis去做mybatis的二级缓存,...
    99+
    2023-05-30
    ssm redis
  • Redis集群与SSM整合使用方法
    首先是创建redis-cluster文件夹:因为redis最少需要6个节点(三主三从),为了更好的理解,我这里创建了两台虚拟机(192.168.0.109 192.168.0.110),分别在两台虚拟机的/opt/redis-4.0.1/r...
    99+
    2023-05-30
    redis ssm 整合
  • 04.redis集群+SSM整合使用
     redis集群+SSM整合使用首先是创建redis-cluster文件夹:因为redis最少需要6个节点(三主三从),为了更好的理解,我这里创建了两台虚拟机(192.168.0.109 192....
    99+
    2024-04-02
  • 如何对SSM框架进行整合
    今天就跟大家聊聊有关如何对SSM框架进行整合,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。SSM(Spring+SpringMVC+Mybatis)是目前较为主流的企业级架构方案,不...
    99+
    2023-05-31
    ssm
  • IDEA SSM整合Redis项目实例 附源码
    IDEA SSM整合Redis项目实例 1、pom.xml 配置 <!-- https://mvnrepository.com/artifact/redis.client...
    99+
    2024-04-02
  • IDEA SSM整合Redis项目的示例分析
    这篇文章给大家分享的是有关IDEA SSM整合Redis项目的示例分析的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。IDEA SSM整合Redis项目实例1、pom.xml 配置 <!--&nbs...
    99+
    2023-06-15
  • springboot如何整合Redis
    这篇文章主要介绍springboot如何整合Redis,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!引入依赖:在pom文件中添加redis依赖:<dependency>   ...
    99+
    2023-06-19
  • SpringBoot如何整合Druid、Redis
    这篇文章主要介绍SpringBoot如何整合Druid、Redis,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!1.整合Druid1.1Druid简介Java程序很大一部分要操作数据库,为了提高性能操作数据库的时候,...
    99+
    2023-06-29
  • spring如何整合redis使用
    小编给大家分享一下spring如何整合redis使用,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!1.简单介绍redis 是基于...
    99+
    2024-04-02
  • Workerman3.0.7如何整合Redis和ThinkPHP3.2.3
    这篇文章主要为大家展示了“Workerman3.0.7如何整合Redis和ThinkPHP3.2.3”,内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让小编带领大家一起研究并学习一下“Workerm...
    99+
    2024-04-02
  • SpringBoot中如何整合Lettuce redis
    这篇文章主要介绍“SpringBoot中如何整合Lettuce redis”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“SpringBoot中如何整合Lettuce redis”文章能帮助大家解决问...
    99+
    2023-06-08
  • SSM(Spring+SpringMVC+Mybatis)框架整合
    1、数据准备 SET FOREIGN_KEY_CHECKS=0; -- ---------------------------- -- Table structure for `admin` -- ------------------...
    99+
    2014-11-03
    SSM(Spring+SpringMVC+Mybatis)框架整合
  • ssm整合shiro使用详解
    目录整合shiro:1.在pom.xml中引入依赖2.新建并配置缓存ehcache.xml3.在spring配置文件applicationContext.xml配置shiro4.自定...
    99+
    2024-04-02
  • SpringMVC 整合SSM框架详解
    整合SSM 环境要求 环境: IDEA MySQL5.7.19 Tomcat9 Maven3.6 要求: 需要熟练掌握MySQL数据库,Spr...
    99+
    2024-04-02
  • SSM框架整合(Spring+SpringMVC+MyBatis)
    【SSM的系统架构】【整合概述】  MyBatis和Spring整合,通过Spring管理mapper接口。  使用mapper的扫描器自动扫描mapper接口在Spring中进行注册。  通过Spring管理Service接口。  使用配...
    99+
    2023-06-03
  • ssm框架如何使用redis
    ssm框架使用redis的示例:导入Redis相关jar包,代码:<!-- redis相关 -->    <dependency>  &...
    99+
    2024-04-02
  • Spring整合SpringMVC与Mybatis(SSM)实现完整登录功能流程详解
    目录项目演示1 创建工程完成配置2 表设计3 实体类4 mapper5 serviceImpl 实现类异常6 controller7 工具类MD5统一返回对象8 前端页面总结项目演示...
    99+
    2024-04-02
  • SpringBoot整合Redis
    SpringBoot中的Redis 在 SpringBoot2.x 之后,原来使用的jedis被替换为了lettuce jedis : 采用的直连,多个线程操作的话,是不安全的,如果想要避免不安全的,使用 jedis pool 连接 池! ...
    99+
    2023-09-07
    redis spring boot java
  • ssm框架整合思路及代码
    1、Dao层:mybatis整合spring,通过spring创建数据库连接池,管理SqlSessionFactory、mapper代理对象。需要mybatis和spring的整合包 创建SqlM...
    99+
    2024-04-02
  • Spring+SpringMVC+MyBatis整合实战(SSM框架)
    目录SpringMVCSpringMyBatis项目结构maven配置文件pom.xmlwebapp配置文件web.xmlspring配置文件applicationContext.x...
    99+
    2024-04-02
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作