Spring-Session+Redis實現session共用

來源:互聯網
上載者:User

標籤:ram   second   comm   model   login   nec   mvc   通過   osi   

1、添加依賴
<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>
2、配置

spring-mvc.xml:

<bean id="redisHttpSessionConfiguration"      class="org.springframework.session.data.redis.config.annotation.web.http.RedisHttpSessionConfiguration">    <property name="maxInactiveIntervalInSeconds" value="600"/></bean><bean id="jedisPoolConfig" class="redis.clients.jedis.JedisPoolConfig">    <property name="maxTotal" value="100" />    <property name="maxIdle" value="10" /></bean><bean id="jedisConnectionFactory"      class="org.springframework.data.redis.connection.jedis.JedisConnectionFactory" destroy-method="destroy">    <property name="hostName" value="${redis_hostname}"/>    <property name="port" value="${redis_port}"/>    <property name="password" value="${redis_pwd}" />    <property name="timeout" value="3000"/>    <property name="usePool" value="true"/>    <property name="poolConfig" ref="jedisPoolConfig"/></bean>

web.xml添加攔截器:

<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>
3、使用spring-session

只要使用標準的servlet api調用session,在底層就會通過Spring Session得到的,並且會儲存到Redis或其他你所選擇的資料來源中。

這裡是我寫的一個demo:

/** * @author fengzp * @date 17/2/23下午3:19 * @email [email protected] * @company 廣州易站通電腦科技有限公司 */@Controller@RequestMapping(value = "index")public class IndexController {    private final Gson gson = new GsonBuilder().setDateFormat("yyyyMMddHHmmss").create();    @RequestMapping(value = "login")    public String login(HttpServletRequest request, String username){        request.getSession().setAttribute("user", gson.toJson(new User(username,"123456")));        return "login";    }    @RequestMapping(value = "index")    public String index(HttpServletRequest request, Model model){        User user = gson.fromJson(request.getSession().getAttribute("user").toString(), User.class);        model.addAttribute("user", user);        return "index";    }}

Spring-Session+Redis實現session共用

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.