使用spring-session把http session放到redis里面

一:

新建maven的webapp项目,加入spring session的相关依赖

pom.xml 如下:


	
	4.0.0
	com.lala
	leshop
	war
	0.0.1-SNAPSHOT
	
	taobao Maven Webapp
	http://maven.apache.org
	
	
		
			junit
			junit
			4.10
			test
		
		
			javax.servlet
			jsp-api
			2.0
			provided
		

		
			javax.servlet
			javax.servlet-api
			3.0.1
			provided
		
		
			org.springframework.session
			spring-session-data-redis
			1.0.1.RELEASE
		
		
			org.springframework
			spring-web
			4.1.6.RELEASE
		
		
			org.springframework.session
			spring-session
			1.0.1.RELEASE
		
		
			com.orange.redis-embedded
			embedded-redis
			0.6
		
	
	
		leshop
		
			
				org.apache.maven.plugins
				maven-compiler-plugin
				3.3
				
					1.8
					1.8
					true
				
			
		
	



二:

配置redis环境

1:安装redis,启动

2:

package com.lala.config;

import org.springframework.context.annotation.Bean;
import org.springframework.data.redis.connection.jedis.JedisConnectionFactory;
import org.springframework.session.data.redis.config.annotation.web.http.EnableRedisHttpSession;

@EnableRedisHttpSession
public class SessionConfig 
{
	@Bean
	public JedisConnectionFactory connectionFactory()
	{
		JedisConnectionFactory connection = new JedisConnectionFactory();
		connection.setPort(6379);
		connection.setHostName("192.168.1.106");
		return connection;
	}
}

package com.lala.config;

import org.springframework.session.web.context.AbstractHttpSessionApplicationInitializer;

public class SessionInitializer extends AbstractHttpSessionApplicationInitializer 
{
	public SessionInitializer() 
	{
		super(SessionConfig.class);
	}
}


三:

最后,在servlet或者action里面

Integer uid = Integer.valueOf(req.getParameter("uid"));
req.getSession().setAttribute("user", new User(uid, "张三", "这里是redis的"));

执行之后,发现session已经保存在redis里面了。


这种做法,不需要依赖具体的容器。放到任何容器里面都可以使用。

不像网上的做法,使用其他的jar,还需要配置tomcat。这种做法,不支持其他的web server


你可能感兴趣的:(Spring)