restful 是现在比较主流的一种提供服务方式。本文不做解释。
本文重点在于 让restful 如何使用session。并且解决在分布式集群情况下的session问题。
官方资料
首先介绍 redis
redis是一个key-value存储系统。和Memcached类似,它支持存储的value类型相对更多,包括string(字符串)、list(链表)、set(集合)、zset(sorted set --有序集合)和hash(哈希类型)。这些数据类型都支持push/pop、add/remove及取交集并集和差集及更丰富的操作,而且这些操作都是原子性的。在此基础上,redis支持各种不同方式的排序。与memcached一样,为了保证效率,数据都是缓存在内存中。区别的是redis会周期性的把更新的数据写入磁盘或者把修改操作写入追加的记录文件,并且在此基础上实现了master-slave(主从)同步。
Redis支持主从同步。数据可以从主服务器向任意数量的从服务器上同步,从服务器可以是关联其他从服务器的主服务器。这使得Redis可执行单层树复制。存盘可以有意无意的对数据进行写操作。由于完全实现了发布/订阅机制,使得从数据库在任何地方同步树时,可订阅一个频道并接收主服务器完整的消息发布记录。同步对读取操作的可扩展性和数据冗余很有帮助。
redis的官网地址 redis.io
Installation
Download, extract and compile Redis with:
$ wget http://download.redis.io/releases/redis-3.2.1.tar.gz
$ tar xzf redis-3.2.1.tar.gz
$ cd redis-3.2.1
$ make
src
$ src/redis-server
启动 redis 的方式
指定配置文件启动 ./redis-server ../redis.conf
#使用客户端
redis-cli shutdown
#因为Redis可以妥善处理SIGTERM信号,所以直接kill -9也是可以的
kill -9 PID
1,配置密码
2,运行其他机器连接的配置
点击查看启动设置
redis.confg ,找到 requirepass 。
比如 requirepass mypassword,然后重启。
第二种方式 redis已经启动。通过redis-cli 客户端修改。
redis-cli 常用参数
-h host
-p port
-a password
redis-cli
[root@localhost src]# ./redis-cli
查看当前密码设置
127.0.0.1:6379> config get requirepass
1) "requirepass"
2) ""
设置密码
127.0.0.1:6379> config set requirepass mypassword
OK
因为设置密码后,需要用密码重新授权一次
127.0.0.1:6379> auth mypassword
OK
在从新查看一次密码
127.0.0.1:6379> config get requirepass
1) "requirepass"
2) "mypassword"
查看当前redis 的key集合
127.0.0.1:6379> keys *
第二部分配置 spring session。
本文采用xml 配置方式加载 spring session。也可通过编码方式实现,官网连接
1,首先配置需要引入的spring session 资源
<dependency>
<groupId>org.springframework.session</groupId>
<artifactId>spring-session-data-redis</artifactId>
<version>1.2.1.RELEASE</version>
</dependency>
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>2.8.1</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>${spring-framework.version}</version>
</dependency>
在applicationContext 中配置
下面配置中 ConfigureRedisAction.NO_OP 说明
Keyspace notifications功能默认是关闭的(默认地,Keyspace 时间通知功能是禁用的,因为它或多或少会使用一些CPU的资源)。
而 RedisHttpSessionConfiguration是默认开启。所以通过 配置 ConfigureRedisAction.NO_OP关闭。
需要注意使用 spring session 后 。会话过期时间,通过一下配置,单位秒。
<property name="maxInactiveIntervalInSeconds" value="1800" />
<context:annotation-config />
<!-- --><util:constant
static-field="org.springframework.session.data.redis.config.ConfigureRedisAction.NO_OP"/>
<!-- 将session放入redis -->
<bean class="org.springframework.session.data.redis.config.annotation.web.http.RedisHttpSessionConfiguration">
<property name="maxInactiveIntervalInSeconds" value="1800" />
</bean>
<!--<bean class="org.springframework.security.web.session.HttpSessionEventPublisher"/>-->
<bean id="jedisPoolConfig" class="redis.clients.jedis.JedisPoolConfig">
<!-- <property name="maxTotal" value="30"/>
<property name="maxIdle" value="10"/>
<property name="minIdle" value="1"/>
<property name="maxWaitMillis" value="30000"/>
<property name="testOnBorrow" value="true"/>
<property name="testOnReturn" value="false"/>
<property name="testWhileIdle" value="false"/>-->
</bean>
<bean id="jedisConnectionFactory"
class="org.springframework.data.redis.connection.jedis.JedisConnectionFactory">
<property name="hostName" value="ip" />
<!--<property name="hostName" value="localhost" />-->
<property name="port" value="6379" />
<property name="password" value="mypassword" />
<property name="timeout" value="300" />
<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>
然后在控制器中就可以只用 spring session。相当简单。
@RequestMapping(value = "/t2", method = RequestMethod.POST)
@ResponseBody
public String t2(HttpSession session,@RequestBody String paramStr, Map<String, Object> paramMap) throws Exception {
session.setAttribute("paramStr", paramStr);
return session.getId()+paramMap;
}
@RequestMapping(value="/t4", method = RequestMethod.POST)
@ResponseBody
public String t4(HttpSession session,@RequestBody String paramStr, Map<String, Object> paramMap) {
return session.getAttribute("paramStr").toString();
}