redis初识

本文介绍如何使用Spring Session结合Redis实现分布式会话管理。通过配置pom.xml引入所需依赖,设置web.xml和applicationContext.xml来整合Spring Session及Redis,实现会话数据存储于Redis中。
摘要由CSDN通过智能技术生成

首先需要安装redis服务器 其实原本是支持linux系统的版本的,但是可以在git上下载到windows redis 64位,我下载的是Redis-x64-3.0.504.解压就能用,不需要安装。

下载网址:https://github.com/MSOpenTech/redis/releases


cmd启动redis服务器:redis-server.exe  redis.windows.conf


cmd启动redis客户端:redis-cli.exe -h 127.0.0.1 -p 6379   然后可以操作查看redis服务器上的数据了,其实 redis服务器默认是16个库,但是只是方便归集查看,并不能在性能上有所提升。
 


使用eclipse新建一个java web项目,在根目录下建立pom.xml文件,然后对着项目右键configure->convent to maven project


window->preferences->Maven->user settings 配置settings.xml

对于settings.xml有两个地方一个是maven安装目录下的conf中,一个是用户目录下.m2\settings.xml,是两个settings.xml融合,优先级。


当时主要是为了学习redis的使用

所以pom.xml文件简单点

1. pom.xml

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>redisSession</groupId>
    <artifactId>redisSession</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <packaging>war</packaging>
    <build>
        <sourceDirectory>src</sourceDirectory>

    </build>
    <dependencies>
        <dependency>
            <groupId>org.springframework.data</groupId>
            <artifactId>spring-data-redis</artifactId>
            <version>1.4.1.RELEASE</version>
        </dependency>
        <dependency>
            <groupId>redis.clients</groupId>
            <artifactId>jedis</artifactId>
            <version>2.5.2</version>
        </dependency>
        <dependency>
            <groupId>org.springframework.session</groupId>
            <artifactId>spring-session</artifactId>
            <version>1.2.0.RELEASE</version>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-web</artifactId>
            <version>4.0.7.RELEASE</version>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-webmvc</artifactId>
            <version>4.0.7.RELEASE</version>
        </dependency>
        
    </dependencies>
</project>

2.web-inf   下 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_2_5.xsd"
    id="WebApp_ID" version="2.5">
    <display-name>redisSession</display-name>
    <welcome-file-list>
        <welcome-file>index.jsp</welcome-file>
    </welcome-file-list>

    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>
            /WEB-INF/*applicationContext.xml
        </param-value>
    </context-param>
   <!-- springContext(WebApplicationContext) 初始化-->
    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>

    <!-- delegatingFilterProxy springSessionRepositoryFilter 名字不能变,因为spring-session实例化的bean叫springSessionRepositoryFilter-->
    <filter>
        <filter-name>springSessionRepositoryFilter</filter-name>
        <filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
    </filter>
    <filter-mapping>
        <filter-name>springSessionRepositoryFilter</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>

</web-app>

3.web-inf   下  applicationContext.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:context="http://www.springframework.org/schema/context"
    xmlns:task="http://www.springframework.org/schema/task" xmlns:mvc="http://www.springframework.org/schema/mvc"
    xmlns:tx="http://www.springframework.org/schema/tx" xmlns:aop="http://www.springframework.org/schema/aop"
    xmlns:mongo="http://www.springframework.org/schema/data/mongo"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
    http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
    http://www.springframework.org/schema/context
    http://www.springframework.org/schema/context/spring-context.xsd
    http://www.springframework.org/schema/task
    http://www.springframework.org/schema/task/spring-task-3.2.xsd
    http://www.springframework.org/schema/data/mongo
    http://www.springframework.org/schema/data/mongo/spring-mongo-1.0.xsd
    http://www.springframework.org/schema/tx
    http://www.springframework.org/schema/tx/spring-tx-3.2.xsd
    http://www.springframework.org/schema/aop
    http://www.springframework.org/schema/aop/spring-aop-3.2.xsd
    http://www.springframework.org/schema/mvc
    http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd">

   <!-- 扫描注释配置,实例化bean-->
    <context:annotation-config />

    <!-- Property Placeholder Configurer -->
    <bean id="config"
        class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
        <property name="locations">
            <list>
                <value>/WEB-INF/redis.properties</value>
            </list>
        </property>
    </bean>

    <!-- 设置Cookie domain 和 名称,浏览器cookie安全的原因 domainName path -->

    <!-- spring session使用封装新的请求和响应,其中响应返回cookie到浏览器端的cookieName为SESSION-->

    <bean id="defaultCookieSerializer"
        class="org.springframework.session.web.http.DefaultCookieSerializer">
        <property name="domainName" value=".example.com" />
        <property name="cookieName" value="SESSION" />
    </bean>

    <!-- redis -->
    <bean id="jedisPoolConfig" class="redis.clients.jedis.JedisPoolConfig">
    </bean>

    <bean id="jedisConnectionFactory"
        class="org.springframework.data.redis.connection.jedis.JedisConnectionFactory">
        <property name="hostName" value="${redis.host}" />
        <property name="port" value="${redis.port}" />
        <!-- <property name="password" value="${redis.pass}" /> <property name="timeout"
            value="${redis.timeout}" /> -->
        <property name="poolConfig" ref="jedisPoolConfig" />
        <!-- <property name="usePool" value="true" /> -->
    </bean>

    <bean id="redisTemplate" class="org.springframework.data.redis.core.StringRedisTemplate">
        <property name="connectionFactory" ref="jedisConnectionFactory" />
    </bean>

    <!-- 将session放入redis -->
    <bean id="redisHttpSessionConfiguration"
        class="org.springframework.session.data.redis.config.annotation.web.http.RedisHttpSessionConfiguration">
        <property name="maxInactiveIntervalInSeconds" value="1800" />
    </bean>
</beans>


备注延伸:

第一点:
<context:annotation-config/>与<context:component-scan base-package="pack.pack"/>的关系
其中一句话:使用<context:component-scan/>后,即可将<context:annotation-config/>省去


第二点:

在启动项目时有时会报错

spring :  
1.<!--   <context:annotation-config/> --> applicationContext
有时会报springSessionRepositoryFilter找不到名字是springSessionRepositoryFilter的bean
2.<!-- <context:component-scan
        base-package="org.springframework.web.filter.DelegatingFilterProxy">
  </context:component-scan> -->
加上都可以


4. web-inf  下redis.properties

redis.host=127.0.0.1
redis.port=6379


参考网页:

http://blog.csdn.net/patrickyoung6625/article/details/45694157


测试jsp

index.jsp :

debug时发现request.getSession()得到的session 类型也变化了,是springSession中的session类型

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<%=request.getSession().getId() %>
</body>
</html>

request.getSession().getId()在浏览器打开并且在一定时间内每次请求中每次的sessionId不会变化,而且在redis客户端输入KEY * 查询到此sessionId

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值