spring-session-redis配置实例

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" id="WebApp_ID" version="3.0">

  <display-name>XXXX</display-name>

<context-param>

  <param-name>defaultHtmlEscape</param-name>

  <param-value>true</param-value>

</context-param>

<!--

- Key of the system property that should specify the root directory of this

- web app. Applied by WebAppRootListener or Log4jConfigListener.

-->

<context-param>

<param-name>webAppRootKey</param-name>

<param-value>xxxx.root</param-value>

</context-param>

<!--

- Location of the Log4J config file, for initialization and refresh checks.

- Applied by Log4jConfigListener.

-->

<context-param>

<param-name>log4jConfigLocation</param-name>

<param-value>/WEB-INF/log4j.properties</param-value>

</context-param>

    <context-param>

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

        <param-value>

        /WEB-INF/spring/*.xml

        </param-value>

    </context-param>

    <servlet>

        <servlet-name>dispatcher</servlet-name>

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

        <init-param>

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

        <param-value>/WEB-INF/spring/mvc/dispatcher-servlet.xml</param-value>

        </init-param>

        <multipart-config>

        <max-file-size>10000000</max-file-size>

        </multipart-config>

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

    </servlet>

    <servlet-mapping>

        <servlet-name>dispatcher</servlet-name>

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

    </servlet-mapping>

    

    <!-- spring session on redis -->

     <filter>

<filter-name>springSessionRepositoryFilter</filter-name>

<filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>

</filter>

    <!-- spring session on redis end-->

<filter>

<filter-name>characterEncodingFilter</filter-name>

<filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>

<init-param>

<param-name>encoding</param-name>

<param-value>UTF-8</param-value>

</init-param>

<init-param>

<param-name>forceEncoding</param-name>

<param-value>true</param-value>

</init-param>

</filter>

<filter>

<filter-name>SignonFilter</filter-name>

<filter-class>xxxx.xxx.SignonFilter</filter-class>

</filter>

<!-- spring session on redis -->

<filter-mapping>

<filter-name>springSessionRepositoryFilter</filter-name>

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

</filter-mapping>

    <!-- spring session on redis over-->

<filter-mapping>

<filter-name>characterEncodingFilter</filter-name>

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

</filter-mapping> 

<filter-mapping>

<filter-name>SignonFilter</filter-name>

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

</filter-mapping>

<listener>

<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>

</listener>

<!--

- Configures Log4J for this web app.

- As this context specifies a context-param "log4jConfigLocation", its file path

- is used to load the Log4J configuration, including periodic refresh checks.

-->

<listener>

<listener-class>

org.springframework.web.util.Log4jConfigListener

</listener-class>

</listener>

<servlet>

<servlet-name>xxServlet</servlet-name>

<servlet-class>xx.xx.xxServlet</servlet-class>

<init-param>

<param-name>xxxx</param-name>

<param-value>/WEB-INF/xxxx.properties</param-value>

</init-param>

<load-on-startup>99</load-on-startup>

</servlet>

<jsp-config>

<taglib>

<taglib-uri>/tags/xxxx</taglib-uri>

<taglib-location>/WEB-INF/tld/xxxx.tld</taglib-location>

</taglib>

</jsp-config>

</web-app>

spring session 配置:

redis主从模式,无分片

<?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:cache="http://www.springframework.org/schema/cache"

xmlns:p="http://www.springframework.org/schema/p"

xmlns:tx="http://www.springframework.org/schema/tx"

xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.2.xsd

http://www.springframework.org/schema/cache http://www.springframework.org/schema/cache/spring-cache-4.2.xsd

http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.2.xsd

http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.2.xsd">

<bean class="xxxx.SessionDestroyEventListener"/>

<context:annotation-config/>

<bean class="org.springframework.session.data.redis.config.annotation.web.http.RedisHttpSessionConfiguration"/>

<bean id="redisSentinelConfiguration" class="org.springframework.data.redis.connection.RedisSentinelConfiguration">

<property name="master">

            <bean class="org.springframework.data.redis.connection.RedisNode">

                <property name="name" value="mymaster"/>

            </bean>

        </property>

        <property name="sentinels">

            <set>

                <bean class="org.springframework.data.redis.connection.RedisNode">

                    <constructor-arg name="host" value="192.168.0.3"/> 

                    <constructor-arg name="port" value="26379"/>                   

                </bean>

                <bean class="org.springframework.data.redis.connection.RedisNode">

                    <constructor-arg name="host" value="192.168.0.3"/> 

                    <constructor-arg name="port" value="26380"/>                   

                </bean>

            </set>

        </property>

   </bean>

<bean class="org.springframework.data.redis.connection.jedis.JedisConnectionFactory">

<constructor-arg ref="redisSentinelConfiguration"/>

</bean>

</beans>

猜你喜欢

转载自currentj.iteye.com/blog/2278441