SSM+Redis整合

SSM+Redis整合

在搭建好SSM环境的基础上,整合Redis,在网上看了很多例子,记下来加深印象并做以后阅读。

1 创建一个Spring-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:tx="http://www.springframework.org/schema/tx"
          xmlns:context="http://www.springframework.org/schema/context"
          xsi:schemaLocation="
      http://www.springframework.org/schema/beans
      http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
      http://www.springframework.org/schema/tx
      http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
      http://www.springframework.org/schema/context
      http://www.springframework.org/schema/context/spring-context-3.0.xsd">
      <!--设置数据池-->
     <context:property-placeholder location="classpath:redis.properties" ignore-unresolvable="true"/>  
     <bean id="jedisPoolConfig" class="redis.clients.jedis.JedisPoolConfig">  
        <property name="maxIdle" value="${redis.maxIdle}" />  
        <property name="maxTotal" value="${redis.maxTotal}" />  
        <property name="maxWaitMillis" value="${redis.maxWaitMillis}" />  
        <property name="testOnBorrow" value="${redis.testOnBorrow}" />  
     </bean>  

    <!--链接redis-->
    <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.password}"></property>
       <!--  <property name="poolConfig" ref="poolConfig"></property> -->
         <constructor-arg index="0" ref="jedisPoolConfig" />    
    </bean>
    <!-- <bean id="redisTemplate" class="org.springframework.data.redis.core.StringRedisTemplate">    
        <property name="connectionFactory" ref="jedisConnectionFactory" />    
    </bean>   -->  
    <!-- <bean id="redisTemplate" class="org.springframework.data.redis.core.RedisTemplate" p:connection-factory-ref="connectionFactory" >
        以下针对各种数据进行序列化方式的选择
        <property name="keySerializer">
            <bean class="org.springframework.data.redis.serializer.StringRedisSerializer" />
        </property>
        <property name="valueSerializer">
            <bean class="org.springframework.data.redis.serializer.StringRedisSerializer" />
        </property>
        <property name="hashKeySerializer">
            <bean class="org.springframework.data.redis.serializer.StringRedisSerializer" />
        </property> -->
        <!--<property name="hashValueSerializer">
            <bean class="org.springframework.data.redis.serializer.StringRedisSerializer" />
        </property>
    </bean>-->
</beans>

2 将spring-redis.xml里面需要的redis连接信息存到redis.properties中

redis.maxIdle=300
redis.minIdle=100
redis.maxWaitMillis=3000
redis.testOnBorrow=true
redis.maxTotal=500
redis.host=***//redis服务器所在IP地址
redis.port=6379
redis.password=***//登录redis的密码

3 将spring-redis.xml配置加入到web.xml中

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns="http://java.sun.com/xml/ns/javaee"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
    version="3.0">
    <display-name>Archetype Created Web Application</display-name>
    <context-param>
        <!-- 指定mybatis 的配置文件所在目录 -->
        <param-name>contextConfigLocation</param-name>
        <param-value>classpath:spring-redis.xml,classpath:spring-mybatis.xml</param-value>
    </context-param>
    <filter>
        <filter-name>encodingFilter</filter-name>
        <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
        <async-supported>true</async-supported>
        <init-param>
            <param-name>encoding</param-name>
            <param-value>UTF-8</param-value>
        </init-param>
    </filter>
    <filter-mapping>
        <filter-name>encodingFilter</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>
    <listener>
        <!-- Spring配置 -->
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>
    <listener>
        <listener-class>org.springframework.web.util.IntrospectorCleanupListener</listener-class>
    </listener>

    <!--    配置类型文件 -->
    <servlet-mapping>
    <!-- 不拦截部分 -->
        <servlet-name>default</servlet-name> 
        <url-pattern>*.css</url-pattern>
        <url-pattern>*.gif</url-pattern>
        <url-pattern>*.jpg</url-pattern>
        <url-pattern>*.js</url-pattern>
        <url-pattern>*.png</url-pattern>
        <url-pattern>*.map</url-pattern>  
    </servlet-mapping>



    <!-- Spring MVC配置 -->

    <servlet>

        <servlet-name>Dispatcher</servlet-name>

        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>

        <!-- 自定义spring mvc的配置文件名称和路径 -->

        <init-param>

            <param-name>contextConfigLocation</param-name>

            <param-value>classpath:spring-mvc.xml</param-value>

        </init-param>

        <load-on-startup>1</load-on-startup>

    </servlet>

    <!-- spring mvc 请求后缀 -->

    <servlet-mapping>

        <servlet-name>Dispatcher</servlet-name>

        <url-pattern>/</url-pattern>

    </servlet-mapping>

    <session-config>
        <session-timeout>120</session-timeout>
    </session-config>
    <mime-mapping>
        <extension>*.ppt</extension>
        <mime-type>application/mspowerpoint</mime-type>
    </mime-mapping>

    <welcome-file-list>
        <welcome-file>/jsp/manage/ruleList.jsp</welcome-file>
    </welcome-file-list>
</web-app>

4 用pom.xml下载相应的jar包,下载的spring-data-redis,jedis要配套,不然会出错

        <dependency>
            <groupId>org.springframework.data</groupId>
            <artifactId>spring-data-redis</artifactId>
            <version>1.8.4.RELEASE</version>
        </dependency>
        <dependency>
            <groupId>redis.clients</groupId>
            <artifactId>jedis</artifactId>
            <version>2.9.0</version>
        </dependency>

5 在我的ServerImpl里面,用下面的方式获取JedisConnection实例

 public JedisConnection getJedisConnectionFactory(){
            ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext("spring-redis.xml");  
            JedisConnectionFactory pool = (JedisConnectionFactory) context.getBean("jedisConnectionFactory");  
            JedisConnection jedis = (JedisConnection) pool.getConnection();
            return jedis;
        }

6 获取JedisConnection实例以后可用它的方法去测试是否联通Redis。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值