Как хранить весеннюю сессию в Redis - PullRequest
0 голосов
/ 04 июля 2019

Я новичок в Redis.Я хочу сохранить весеннюю сессию в Redis.

Я создаю весеннее приложение с конфигурацией xml.я добавил redis и jedis id

<bean id="jedisConnectionFactoryclass="org.springframework.data.redis.connection.jedis.JedisConnectionFactory">
             IP address
    <property name="hostName" value="http://127.0.0.1"/>
             Password
    <property name="password" value=""/>
             Port number
    <property name="port" value="6379"/>
             Timeout time Default 2000
    <property name="timeout" value="100000"/>
             Connection pool configuration reference

             usePool: Whether to use connection pool
    <property name="usePool" value="true"/>
 </bean>

<bean id="redisTemplate" class="org.springframework.data.redis.core.RedisTemplate">
    <property name="connectionFactory" ref="jedisConnectionFactory"/>
    <property name="keySerializer">
        <bean class="org.springframework.data.redis.serializer.StringRedisSerializer"/>
    </property>
    <property name="valueSerializer">
        <bean class="org.springframework.data.redis.serializer.JdkSerializationRedisSerializer"/>
    </property>
    <property name="hashKeySerializer">
        <bean class="org.springframework.data.redis.serializer.StringRedisSerializer"/>
    </property>
    <property name="hashValueSerializer">
        <bean class="org.springframework.data.redis.serializer.JdkSerializationRedisSerializer"/>
    </property>
             Open transaction
    <property name="enableTransactionSupport" value="true"></property>
</bean>

<dependency>
        <groupId>org.springframework.data</groupId>
        <artifactId>spring-data-redis</artifactId>
        <version>1.7.2.RELEASE</version>
    </dependency>
    <dependency>
        <groupId>redis.clients</groupId>
        <artifactId>jedis</artifactId>
        <version>2.6.2</version>
    </dependency> 
    <dependency>
        <groupId>org.springframework.session</groupId>
        <artifactId>spring-session</artifactId>
        <version>1.3.3.RELEASE</version>
    </dependency>
    <dependency>
        <groupId>org.springframework.session</groupId>
        <artifactId>spring-session-data-redis</artifactId>
        <version>1.3.5.RELEASE</version>
    </dependency>
    <dependency>
        <groupId>io.lettuce</groupId>
        <artifactId>lettuce-core</artifactId>
        <version>5.1.1.RELEASE</version>
    </dependency>

выше зависимости добавлены в pom.Ничего не отображается в мониторе redis-cli.я установил redis -cli один сервер 196.123.0.14

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...