组织ID: |
org.springframework.data |
项目ID: |
spring-data-redis |
版本: |
2.0.11.RELEASE |
最后修改时间: |
2018-10-16 15:55:41 |
包类型: |
jar |
标题: |
Spring Data Redis |
大小: |
1.26MB |
|
Maven引入代码: |
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-redis</artifactId>
<version>2.0.11.RELEASE</version>
</dependency>
|
Gradle引入代码: |
org.springframework.data:spring-data-redis:2.0.11.RELEASE
|
下载Jar包: |
|
POM文件内容: |
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-redis</artifactId>
<version>2.0.11.RELEASE</version>
<name>Spring Data Redis</name>
<parent>
<groupId>org.springframework.data.build</groupId>
<artifactId>spring-data-parent</artifactId>
<version>2.0.11.RELEASE</version>
</parent>
<properties>
<springdata.keyvalue>2.0.11.RELEASE</springdata.keyvalue>
<jta>1.1</jta>
<beanutils>1.9.2</beanutils>
<xstream>1.4.8</xstream>
<pool>2.2</pool>
<lettuce>5.0.4.RELEASE</lettuce>
<jedis>2.9.0</jedis>
<multithreadedtc>1.01</multithreadedtc>
<java-module-name>spring.data.redis</java-module-name>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-pool2</artifactId>
<version>${pool}</version>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<!-- Spring -->
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-keyvalue</artifactId>
<version>${springdata.keyvalue}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-oxm</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context-support</artifactId>
</dependency>
<!-- REDIS Drivers -->
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>${jedis}</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>io.lettuce</groupId>
<artifactId>lettuce-core</artifactId>
<version>${lettuce}</version>
<optional>true</optional>
</dependency>
<!-- reactive -->
<dependency>
<groupId>io.projectreactor</groupId>
<artifactId>reactor-core</artifactId>
<optional>true</optional>
</dependency>
<!--Mapper -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
<version>${beanutils}</version>
<optional>true</optional>
</dependency>
<!-- Pool -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-pool2</artifactId>
<optional>true</optional>
</dependency>
<!-- CDI -->
<!-- Dependency order required to build against CDI 1.0 and test with CDI 2.0 -->
<dependency>
<groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-jcdi_2.0_spec</artifactId>
<version>1.0.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax.interceptor</groupId>
<artifactId>javax.interceptor-api</artifactId>
<version>1.2.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax.enterprise</groupId>
<artifactId>cdi-api</artifactId>
<version>${cdi}</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
<version>${javax-annotation-api}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.openwebbeans</groupId>
<artifactId>openwebbeans-se</artifactId>
<version>${webbeans}</version>
<scope>test</scope>
</dependency>
<!-- Test -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax.transaction</groupId>
<artifactId>jta</artifactId>
<version>${jta}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>jsr250-api</artifactId>
<version>1.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.thoughtworks.xstream</groupId>
<artifactId>xstream</artifactId>
<version>${xstream}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>edu.umd.cs.mtc</groupId>
<artifactId>multithreadedtc</artifactId>
<version>${multithreadedtc}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.projectreactor</groupId>
<artifactId>reactor-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<includes>
<include>**/*Tests.java</include>
<include>**/*Test.java</include>
</includes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>wagon-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.asciidoctor</groupId>
<artifactId>asciidoctor-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.jfrog.buildinfo</groupId>
<artifactId>artifactory-maven-plugin</artifactId>
<inherited>false</inherited>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<repositories>
<repository>
<id>spring-libs-release</id>
<url>https://repo.spring.io/libs-release</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>spring-plugins-release</id>
<url>https://repo.spring.io/plugins-release</url>
</pluginRepository>
</pluginRepositories>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
org.springframework.data.redis.repository.configuration.RedisRepositoriesRegistrar.class
org.springframework.data.redis.repository.cdi.CdiBean.class
org.springframework.data.redis.repository.query.RedisOperationChain.class
org.springframework.data.redis.serializer.GenericToStringSerializer$Converter.class
org.springframework.data.redis.serializer.DefaultRedisSerializationContext.class
org.springframework.data.redis.serializer.DefaultRedisElementWriter.class
org.springframework.data.redis.listener.KeyspaceEventMessageListener.class
org.springframework.data.redis.listener.adapter.RedisListenerExecutionFailedException.class
org.springframework.data.redis.listener.Topic.class
org.springframework.data.redis.core.mapping.package-info.class
org.springframework.data.redis.core.DefaultReactiveListOperations.class
org.springframework.data.redis.core.ScanOptions$ScanOptionsBuilder.class
org.springframework.data.redis.core.ScanCursor.class
org.springframework.data.redis.core.BoundKeyOperations.class
org.springframework.data.redis.core.script.ScriptUtils.class
org.springframework.data.redis.core.script.RedisScript.class
org.springframework.data.redis.core.RedisKeyValueTemplate$RedisKeyValueCallback.class
org.springframework.data.redis.core.RedisKeyValueTemplate$1.class
org.springframework.data.redis.core.DefaultListOperations$6.class
org.springframework.data.redis.core.DefaultSetOperations$1.class
org.springframework.data.redis.core.DefaultHashOperations.class
org.springframework.data.redis.core.index.RedisIndexDefinition$NoOpValueTransformer.class
org.springframework.data.redis.core.index.RedisIndexDefinition.class
org.springframework.data.redis.core.RedisConnectionUtils$RedisConnectionHolder.class
org.springframework.data.redis.core.DefaultValueOperations$4.class
org.springframework.data.redis.core.DefaultListOperations$7.class
org.springframework.data.redis.core.query.QueryUtils.class
org.springframework.data.redis.core.DefaultReactiveSetOperations.class
org.springframework.data.redis.core.convert.Jsr310Converters$LocalDateTimeToBytesConverter.class
org.springframework.data.redis.core.convert.SpelIndexResolver.class
org.springframework.data.redis.core.convert.BinaryConverters$DateToBytesConverter.class
org.springframework.data.redis.core.convert.Jsr310Converters$DurationToBytesConverter.class
org.springframework.data.redis.core.convert.SimpleIndexedPropertyValue.class
org.springframework.data.redis.core.convert.MappingConfiguration.class
org.springframework.data.redis.core.convert.Jsr310Converters$BytesToLocalDateConverter.class
org.springframework.data.redis.core.ScanCursor$CursorState.class
org.springframework.data.redis.cache.RedisCacheManager.class
org.springframework.data.redis.connection.ReactiveScriptingCommands.class
org.springframework.data.redis.connection.RedisGeoCommands$GeoLocation.class
org.springframework.data.redis.connection.ReactiveSetCommands$SUnionStoreCommand.class
org.springframework.data.redis.connection.lettuce.LettuceKeyCommands.class
org.springframework.data.redis.connection.lettuce.LettuceReactiveClusterNumberCommands.class
org.springframework.data.redis.connection.lettuce.LettuceConnection$TypeHints.class
org.springframework.data.redis.connection.lettuce.LettuceReactiveClusterSetCommands.class
org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory$MutableLettuceClientConfiguration.class
org.springframework.data.redis.connection.lettuce.LettuceReactiveClusterHashCommands.class
org.springframework.data.redis.connection.lettuce.LettuceZSetCommands.class
org.springframework.data.redis.connection.lettuce.package-info.class
org.springframework.data.redis.connection.lettuce.LettuceReactiveHyperLogLogCommands.class
org.springframework.data.redis.connection.lettuce.LettucePoolingClientConfiguration$LettucePoolingSslClientConfigurationBuilder.class
org.springframework.data.redis.connection.lettuce.LettuceConverters$2.class
org.springframework.data.redis.connection.lettuce.LettuceReactiveZSetCommands.class
org.springframework.data.redis.connection.ReactiveHyperLogLogCommands$PfAddCommand.class
org.springframework.data.redis.connection.ReactiveStringCommands$SetRangeCommand.class
org.springframework.data.redis.connection.Message.class
org.springframework.data.redis.connection.RedisSentinelCommands.class
org.springframework.data.redis.connection.ReactiveSetCommands.class
org.springframework.data.redis.connection.ReactiveRedisConnection$MultiValueResponse.class
org.springframework.data.redis.connection.ReactiveRedisConnection$BooleanResponse.class
org.springframework.data.redis.connection.ReactiveListCommands$BRPopLPushCommand.class
org.springframework.data.redis.connection.RedisSetCommands.class
org.springframework.data.redis.connection.ReturnType.class
org.springframework.data.redis.connection.ReactiveGeoCommands$GeoRadiusByMemberCommand.class
org.springframework.data.redis.connection.RedisGeoCommands$GeoRadiusCommandArgs$Flag.class
org.springframework.data.redis.connection.ReactiveZSetCommands$ZRangeByScoreCommand.class
org.springframework.data.redis.connection.SortParameters$Order.class
org.springframework.data.redis.connection.ReactiveHashCommands$HExistsCommand.class
org.springframework.data.redis.connection.RedisGeoCommands$GeoRadiusCommandArgs.class
org.springframework.data.redis.connection.jedis.JedisClusterHashCommands$1.class
org.springframework.data.redis.connection.jedis.JedisConverters$2.class
org.springframework.data.redis.connection.jedis.JedisKeyCommands$1.class
org.springframework.data.redis.connection.jedis.JedisHashCommands$1.class
org.springframework.data.redis.connection.jedis.JedisClusterScriptingCommands.class
org.springframework.data.redis.connection.jedis.JedisClusterSetCommands$1.class
org.springframework.data.redis.connection.jedis.JedisConverters$GeoResultConverterFactory.class
org.springframework.data.redis.connection.jedis.JedisClusterConnection$JedisClusterTopologyProvider.class
org.springframework.data.redis.connection.jedis.JedisResult$JedisStatusResult.class
org.springframework.data.redis.connection.ReactiveClusterListCommands.class
org.springframework.data.redis.connection.ReactiveGeoCommands$GeoPosCommand.class
org.springframework.data.redis.connection.ReactiveKeyCommands$MoveCommand.class
org.springframework.data.redis.connection.RedisListCommands.class
org.springframework.data.redis.connection.convert.TransactionResultConverter.class
org.springframework.data.redis.connection.DefaultStringTuple.class
org.springframework.data.redis.connection.ReactiveStringCommands.class
org.springframework.data.redis.hash.package-info.class
org.springframework.data.redis.TooManyClusterRedirectionsException.class
org.springframework.data.redis.support.atomic.RedisAtomicLong.class
org.springframework.data.redis.support.collections.DefaultRedisList$DefaultRedisListIterator.class
org.springframework.data.redis.support.collections.RedisCollectionFactoryBean$CollectionType$1.class
org.springframework.data.redis.support.collections.RedisZSet.class
org.springframework.data.redis.support.collections.RedisCollectionFactoryBean$CollectionType$4.class
META-INF/spring.factories
META-INF/maven/org.springframework.data/spring-data-redis/pom.properties
org.springframework.data.redis.repository.configuration.RedisRepositoryConfigurationExtension.class
org.springframework.data.redis.repository.cdi.package-info.class
org.springframework.data.redis.repository.query.RedisOperationChain$NearPath.class
org.springframework.data.redis.serializer.OxmSerializer.class
org.springframework.data.redis.serializer.DefaultRedisSerializationContext$DefaultRedisSerializationContextBuilder.class
org.springframework.data.redis.listener.RedisMessageListenerContainer$SubscriptionTask$PatternSubscriptionPresentCondition.class
org.springframework.data.redis.listener.PatternTopic.class
org.springframework.data.redis.core.mapping.RedisMappingContext$ClassNameKeySpaceResolver.class
org.springframework.data.redis.core.mapping.RedisMappingContext.class
org.springframework.data.redis.core.BoundGeoOperations.class
org.springframework.data.redis.core.ScanOptions.class
org.springframework.data.redis.core.RedisConnectionUtils.class
org.springframework.data.redis.core.RedisConnectionUtils$ConnectionSplittingInterceptor.class
org.springframework.data.redis.core.DefaultBoundGeoOperations.class
org.springframework.data.redis.core.DefaultGeoOperations.class
org.springframework.data.redis.core.PartialUpdate$PropertyUpdate.class
org.springframework.data.redis.core.script.DefaultRedisScript.class
org.springframework.data.redis.core.script.package-info.class
org.springframework.data.redis.core.script.DigestUtils.class
org.springframework.data.redis.core.script.ScriptingException.class
org.springframework.data.redis.core.DefaultListOperations.class
org.springframework.data.redis.core.ZSetOperations$TypedTuple.class
org.springframework.data.redis.core.DefaultValueOperations$3.class
org.springframework.data.redis.core.index.RedisIndexDefinition$PathCondition.class
org.springframework.data.redis.core.index.IndexValueTransformer.class
org.springframework.data.redis.core.index.IndexConfiguration.class
org.springframework.data.redis.core.BoundSetOperations.class
org.springframework.data.redis.core.BoundHashOperations.class
org.springframework.data.redis.core.RedisKeyValueAdapter$EnableKeyspaceEvents.class
org.springframework.data.redis.core.query.DefaultSortCriterion.class
org.springframework.data.redis.core.convert.Jsr310Converters$LocalTimeToBytesConverter.class
org.springframework.data.redis.core.convert.ReferenceResolver.class
org.springframework.data.redis.core.convert.Bucket.class
org.springframework.data.redis.core.convert.Jsr310Converters$ZonedDateTimeToBytesConverter.class
org.springframework.data.redis.core.convert.BinaryConverters$StringToBytesConverter.class
org.springframework.data.redis.core.convert.BinaryConverters$BytesToNumberConverterFactory.class
org.springframework.data.redis.core.convert.MappingRedisConverter$BinaryKeyspaceIdentifier.class
org.springframework.data.redis.core.convert.Jsr310Converters$ZoneIdToBytesConverter.class
org.springframework.data.redis.core.convert.MappingRedisConverter.class
org.springframework.data.redis.cache.RedisCache.class
org.springframework.data.redis.connection.ReactiveListCommands$RPopLPushCommand.class
org.springframework.data.redis.connection.ReactiveZSetCommands$ZRemCommand.class
org.springframework.data.redis.connection.ReactiveListCommands$Direction.class
org.springframework.data.redis.connection.lettuce.LettuceResult$LettuceResultBuilder.class
org.springframework.data.redis.connection.lettuce.LettucePoolingClientConfiguration.class
org.springframework.data.redis.connection.lettuce.DefaultLettucePool$LettuceFactory.class
org.springframework.data.redis.connection.lettuce.DefaultLettuceClientConfiguration.class
org.springframework.data.redis.connection.lettuce.LettuceReactiveRedisConnection.class
org.springframework.data.redis.connection.lettuce.LettuceClusterZSetCommands.class
org.springframework.data.redis.connection.lettuce.LettuceReactiveClusterHyperLogLogCommands.class
org.springframework.data.redis.connection.lettuce.LettuceHashCommands.class
org.springframework.data.redis.connection.lettuce.LettucePoolingClientConfiguration$LettucePoolingClientConfigurationBuilder.class
org.springframework.data.redis.connection.lettuce.LettuceConnection.class
org.springframework.data.redis.connection.lettuce.LettuceKeyCommands$1.class
org.springframework.data.redis.connection.ReactiveClusterGeoCommands.class
org.springframework.data.redis.connection.ReactiveClusterStringCommands.class
org.springframework.data.redis.connection.ClusterCommandExecutor$MultiKeyClusterCommandCallback.class
org.springframework.data.redis.connection.DefaultTuple.class
org.springframework.data.redis.connection.ReactiveSetCommands$SPopCommand.class
org.springframework.data.redis.connection.ReactiveStringCommands$BitOpCommand.class
org.springframework.data.redis.connection.ClusterNodeResourceProvider.class
org.springframework.data.redis.connection.ReactiveZSetCommands$ZRemRangeByRankCommand.class
org.springframework.data.redis.connection.ReactiveZSetCommands$ZUnionStoreCommand.class
org.springframework.data.redis.connection.ConnectionUtils.class
org.springframework.data.redis.connection.ReactiveListCommands.class
org.springframework.data.redis.connection.AbstractRedisConnection.class
org.springframework.data.redis.connection.ReactiveZSetCommands$ZIncrByCommand.class
org.springframework.data.redis.connection.PoolException.class
org.springframework.data.redis.connection.ClusterCommandExecutor$MultiNodeResult.class
org.springframework.data.redis.connection.StringRedisConnection$StringTuple.class
org.springframework.data.redis.connection.jedis.JedisConnection$1.class
org.springframework.data.redis.connection.jedis.JedisClusterConnection$JedisClusterCommandCallback.class
org.springframework.data.redis.connection.jedis.JedisZSetCommands.class
org.springframework.data.redis.connection.jedis.JedisUtils.class
org.springframework.data.redis.connection.jedis.JedisScriptReturnConverter.class
org.springframework.data.redis.connection.RedisServer$INFO.class
org.springframework.data.redis.connection.RedisClusterConfiguration.class
org.springframework.data.redis.connection.ReactiveZSetCommands$ZInterStoreCommand.class
org.springframework.data.redis.connection.convert.Converters$DeserializingGeoResultsConverter.class
org.springframework.data.redis.connection.convert.MapConverter.class
org.springframework.data.redis.connection.convert.Converters$DistanceConverterFactory.class
org.springframework.data.redis.connection.SortParameters$Range.class
org.springframework.data.redis.hash.BeanUtilsHashMapper.class
org.springframework.data.redis.hash.ObjectHashMapper$NoOpIndexResolver.class
org.springframework.data.redis.config.package-info.class
org.springframework.data.redis.package-info.class
org.springframework.data.redis.support.collections.CollectionUtils$1.class
org.springframework.data.redis.support.collections.CollectionUtils.class
org.springframework.data.redis.support.collections.DefaultRedisZSet.class
org.springframework.data.redis.support.collections.RedisCollectionFactoryBean$1.class
changelog.txt
org.springframework.data.redis.repository.configuration.package-info.class
org.springframework.data.redis.repository.cdi.RedisKeyValueAdapterBean.class
org.springframework.data.redis.repository.support.RedisRepositoryFactory.class
org.springframework.data.redis.serializer.DefaultRedisElementReader.class
org.springframework.data.redis.serializer.GenericJackson2JsonRedisSerializer.class
org.springframework.data.redis.listener.RedisMessageListenerContainer$SubscriptionTask$PatternSubscriptionTask.class
org.springframework.data.redis.listener.RedisMessageListenerContainer$1.class
org.springframework.data.redis.core.mapping.RedisPersistentProperty.class
org.springframework.data.redis.core.RedisKeyValueAdapter.class
org.springframework.data.redis.core.DefaultReactiveValueOperations.class
org.springframework.data.redis.core.RedisHash.class
org.springframework.data.redis.core.script.ReactiveScriptExecutor.class
org.springframework.data.redis.core.ClusterOperations.class
org.springframework.data.redis.core.ZSetOperationsEditor.class
org.springframework.data.redis.core.DefaultHashOperations$1.class
org.springframework.data.redis.core.BoundZSetOperations.class
org.springframework.data.redis.core.index.IndexDefinitionProvider.class
org.springframework.data.redis.core.index.IndexDefinition$IndexingContext.class
org.springframework.data.redis.core.index.GeoIndexDefinition$PointValueTransformer.class
org.springframework.data.redis.core.index.RedisIndexDefinition$OrCondition.class
org.springframework.data.redis.core.ReactiveValueOperations.class
org.springframework.data.redis.core.ReactiveZSetOperations.class
org.springframework.data.redis.core.ListOperations.class
org.springframework.data.redis.core.DefaultValueOperations$2.class
org.springframework.data.redis.core.ReactiveRedisCallback.class
org.springframework.data.redis.core.convert.BinaryConverters$BytesToNumberConverterFactory$BytesToNumberConverter.class
org.springframework.data.redis.core.convert.IndexedData.class
org.springframework.data.redis.core.convert.Jsr310Converters$BytesToLocalDateTimeConverter.class
org.springframework.data.redis.core.convert.Jsr310Converters$BytesToZoneIdConverter.class
org.springframework.data.redis.core.convert.RedisConverter.class
org.springframework.data.redis.core.convert.BinaryConverters$BytesToDateConverter.class
org.springframework.data.redis.core.convert.BinaryConverters.class
org.springframework.data.redis.core.convert.Jsr310Converters$LocalDateToBytesConverter.class
org.springframework.data.redis.core.convert.Jsr310Converters.class
org.springframework.data.redis.core.ReactiveRedisOperations.class
org.springframework.data.redis.cache.package-info.class
org.springframework.data.redis.connection.ReactiveListCommands$LInsertCommand.class
org.springframework.data.redis.connection.ReactiveSetCommands$SAddCommand.class
org.springframework.data.redis.connection.RedisGeoCommands$DistanceUnit.class
org.springframework.data.redis.connection.RedisInvalidSubscriptionException.class
org.springframework.data.redis.connection.ReactiveSetCommands$SInterCommand.class
org.springframework.data.redis.connection.lettuce.LettuceClusterKeyCommands$1.class
org.springframework.data.redis.connection.lettuce.LettuceReactiveRedisConnection$ByteBufferCodec.class
org.springframework.data.redis.connection.lettuce.LettuceReactiveScriptingCommands.class
org.springframework.data.redis.connection.lettuce.LettuceClusterConnection$LettuceClusterNodeResourceProvider.class
org.springframework.data.redis.connection.lettuce.LettuceSentinelConnection.class
org.springframework.data.redis.connection.lettuce.LettuceServerCommands.class
org.springframework.data.redis.connection.lettuce.LettuceClientConfiguration$LettuceSslClientConfigurationBuilder.class
org.springframework.data.redis.connection.lettuce.LettuceReactiveZSetCommands$ArgumentConverters.class
org.springframework.data.redis.connection.lettuce.LettuceClusterListCommands.class
org.springframework.data.redis.connection.lettuce.LettuceConnection$LettucePoolConnectionProvider.class
org.springframework.data.redis.connection.lettuce.LettuceReactiveStringCommands.class
org.springframework.data.redis.connection.lettuce.LettuceClusterStringCommands.class
org.springframework.data.redis.connection.lettuce.LettuceClusterHashCommands.class
org.springframework.data.redis.connection.ReactiveListCommands$PopResponse.class
org.springframework.data.redis.connection.util.ByteArraySet.class
org.springframework.data.redis.connection.RedisListCommands$Position.class
org.springframework.data.redis.connection.ReactiveClusterHyperLogLogCommands.class
org.springframework.data.redis.connection.ReactiveKeyCommands$ExpireAtCommand.class
org.springframework.data.redis.connection.RedisClusterNode$Flag.class
org.springframework.data.redis.connection.DefaultedRedisConnection.class
org.springframework.data.redis.connection.ReactiveListCommands$PushCommand.class
org.springframework.data.redis.connection.ReactiveGeoCommands$GeoHashCommand.class
org.springframework.data.redis.connection.ReactiveGeoCommands$GeoRadiusCommand.class
org.springframework.data.redis.connection.package-info.class
org.springframework.data.redis.connection.RedisClusterServerCommands.class
org.springframework.data.redis.connection.ReactiveClusterKeyCommands.class
org.springframework.data.redis.connection.RedisStringCommands.class
org.springframework.data.redis.connection.RedisStandaloneConfiguration.class
org.springframework.data.redis.connection.ClusterTopology.class
org.springframework.data.redis.connection.RedisSentinelConfiguration.class
org.springframework.data.redis.connection.RedisSubscribedConnectionException.class
org.springframework.data.redis.connection.jedis.JedisClusterConnection$JedisClusterNodeResourceProvider.class
org.springframework.data.redis.connection.jedis.JedisClusterKeyCommands$1.class
org.springframework.data.redis.connection.jedis.JedisStringCommands.class
org.springframework.data.redis.connection.jedis.JedisConverters$1.class
org.springframework.data.redis.connection.jedis.JedisSubscription.class
org.springframework.data.redis.connection.jedis.JedisClientConfiguration$JedisClientConfigurationBuilder.class
org.springframework.data.redis.connection.jedis.package-info.class
org.springframework.data.redis.connection.jedis.JedisGeoCommands.class
org.springframework.data.redis.connection.jedis.JedisResult.class
org.springframework.data.redis.connection.jedis.JedisClientConfiguration.class
org.springframework.data.redis.connection.jedis.JedisClusterListCommands.class
org.springframework.data.redis.connection.RedisPassword.class
org.springframework.data.redis.connection.ReactiveClusterZSetCommands.class
org.springframework.data.redis.connection.RedisConnectionFactory.class
org.springframework.data.redis.connection.convert.StringToDataTypeConverter.class
org.springframework.data.redis.connection.convert.package-info.class
org.springframework.data.redis.connection.RedisZSetCommands.class
org.springframework.data.redis.hash.DecoratingStringHashMapper.class
org/springframework/data/redis/config/spring-redis-1.0.xsd
org.springframework.data.redis.support.atomic.RedisAtomicInteger.class
org.springframework.data.redis.support.collections.RedisSet.class
org.springframework.data.redis.support.collections.RedisStore.class
org.springframework.data.redis.support.collections.DefaultRedisZSet$DefaultRedisSortedSetIterator.class
org.springframework.data.redis.support.collections.RedisList.class
org.springframework.data.redis.RedisSystemException.class
notice.txt
org.springframework.data.redis.repository.configuration.EnableRedisRepositories.class
org.springframework.data.redis.repository.cdi.RedisKeyValueTemplateBean.class
org.springframework.data.redis.repository.cdi.RedisRepositoryBean.class
org.springframework.data.redis.repository.query.RedisQueryCreator$1.class
org.springframework.data.redis.serializer.DefaultSerializationPair.class
org.springframework.data.redis.serializer.JdkSerializationRedisSerializer.class
org.springframework.data.redis.serializer.Jackson2JsonRedisSerializer.class
org.springframework.data.redis.listener.KeyExpirationEventMessageListener.class
org.springframework.data.redis.listener.adapter.MessageListenerAdapter$MethodInvoker.class
org.springframework.data.redis.listener.RedisMessageListenerContainer$SpinBarrier.class
org.springframework.data.redis.core.mapping.BasicRedisPersistentEntity.class
org.springframework.data.redis.core.DefaultBoundKeyOperations.class
org.springframework.data.redis.core.DefaultBoundListOperations.class
org.springframework.data.redis.core.SetOperations.class
org.springframework.data.redis.core.AbstractOperations$ValueDeserializingRedisCallback.class
org.springframework.data.redis.core.IndexWriter.class
org.springframework.data.redis.core.types.Expiration.class
org.springframework.data.redis.core.DefaultReactiveHyperLogLogOperations.class
org.springframework.data.redis.core.PartialUpdate$UpdateCommand.class
org.springframework.data.redis.core.ScanOptions$1.class
org.springframework.data.redis.core.ReactiveListOperations.class
org.springframework.data.redis.core.RedisCallback.class
org.springframework.data.redis.core.PartialUpdate.class
org.springframework.data.redis.core.DefaultValueOperations.class
org.springframework.data.redis.core.index.IndexDefinitionRegistry.class
org.springframework.data.redis.core.index.PathBasedRedisIndexDefinition.class
org.springframework.data.redis.core.ScanIteration.class
org.springframework.data.redis.core.DefaultBoundValueOperations.class
org.springframework.data.redis.core.RedisKeyValueTemplate$2.class
org.springframework.data.redis.core.query.SortQuery.class
org.springframework.data.redis.core.DefaultListOperations$1.class
org.springframework.data.redis.core.convert.Jsr310Converters$BytesToLocalTimeConverter.class
org.springframework.data.redis.core.convert.BinaryConverters$BytesToEnumConverterFactory$BytesToEnum.class
org.springframework.data.redis.core.convert.MappingRedisConverter$RedisTypeAliasAccessor.class
org.springframework.data.redis.core.convert.CompositeIndexResolver.class
org.springframework.data.redis.core.convert.BinaryConverters$BytesToBooleanConverter.class
org.springframework.data.redis.core.convert.BinaryConverters$BytesToStringConverter.class
org.springframework.data.redis.core.convert.PathIndexResolver$1.class
org.springframework.data.redis.core.convert.KeyspaceConfiguration$DefaultKeyspaceSetting.class
org.springframework.data.redis.core.GeoOperations.class
org.springframework.data.redis.cache.RedisCacheConfiguration.class
org.springframework.data.redis.connection.ReactiveClusterServerCommands.class
org.springframework.data.redis.connection.ReactiveRedisConnection$RangeCommand.class
org.springframework.data.redis.connection.DecoratedRedisConnection.class
org.springframework.data.redis.connection.lettuce.LettuceReactiveRedisConnection$AsyncConnect$State.class
org.springframework.data.redis.connection.lettuce.LettuceHyperLogLogCommands.class
org.springframework.data.redis.connection.lettuce.LettuceConverters$GeoResultsConverterFactory$GeoResultsConverter.class
org.springframework.data.redis.connection.lettuce.LettuceClusterGeoCommands.class
org.springframework.data.redis.connection.lettuce.LettuceSetCommands$1.class
org.springframework.data.redis.connection.lettuce.LettuceReactiveKeyCommands.class
org.springframework.data.redis.connection.lettuce.LettuceReactiveClusterServerCommands.class
org.springframework.data.redis.connection.lettuce.LettuceClientConfiguration.class
org.springframework.data.redis.connection.lettuce.LettuceMessageListener.class
org.springframework.data.redis.connection.lettuce.LettuceClusterTopologyProvider.class
org.springframework.data.redis.connection.lettuce.LettuceConverters$GeoResultsConverterFactory.class
org.springframework.data.redis.connection.lettuce.LettuceConverters.class
org.springframework.data.redis.connection.lettuce.LettuceClusterKeyCommands.class
org.springframework.data.redis.connection.lettuce.LettuceScriptingCommands.class
org.springframework.data.redis.connection.lettuce.LettuceReactiveServerCommands.class
org.springframework.data.redis.connection.lettuce.LettuceReactiveSetCommands.class
org.springframework.data.redis.connection.util.DecodeUtils.class
org.springframework.data.redis.connection.ClusterCommandExecutor$MultiNodeResult$ResultByReferenceKeyPositionComparator.class
org.springframework.data.redis.connection.ReactiveClusterNumberCommands.class
org.springframework.data.redis.connection.RedisClusterConnection.class
org.springframework.data.redis.connection.RedisStringCommands$BitOperation.class
org.springframework.data.redis.connection.ReactiveNumberCommands$DecrByCommand.class
org.springframework.data.redis.connection.ReactiveRedisConnection$NumericResponse.class
org.springframework.data.redis.connection.ReactiveListCommands$BPopCommand.class
org.springframework.data.redis.connection.ReactiveHyperLogLogCommands.class
org.springframework.data.redis.connection.DefaultedRedisClusterConnection.class
org.springframework.data.redis.connection.RedisStringCommands$SetOption.class
org.springframework.data.redis.connection.ReactiveRedisConnectionFactory.class
org.springframework.data.redis.connection.ReactiveNumberCommands$IncrByCommand.class
org.springframework.data.redis.connection.RedisPubSubCommands.class
org.springframework.data.redis.connection.ClusterCommandExecutor$PositionalKey.class
org.springframework.data.redis.connection.ReactiveRedisConnection$CommandResponse.class
org.springframework.data.redis.connection.ReactiveSetCommands$SRemCommand.class
org.springframework.data.redis.connection.RedisClusterNode$LinkState.class
org.springframework.data.redis.connection.DefaultStringRedisConnection$1.class
org.springframework.data.redis.connection.ReactiveKeyCommands.class
org.springframework.data.redis.connection.ReactiveSetCommands$SRandMembersCommand.class
org.springframework.data.redis.connection.RedisClusterCommands.class
org.springframework.data.redis.connection.jedis.JedisConverters$GeoResultsConverterFactory.class
org.springframework.data.redis.connection.jedis.JedisClusterGeoCommands.class
org.springframework.data.redis.connection.jedis.JedisConnectionFactory.class
org.springframework.data.redis.connection.jedis.JedisServerCommands.class
org.springframework.data.redis.connection.jedis.JedisClusterHashCommands.class
org.springframework.data.redis.connection.jedis.JedisConnection.class
org.springframework.data.redis.connection.RedisKeyCommands.class
org.springframework.data.redis.connection.RedisServerCommands$MigrateOption.class
org.springframework.data.redis.connection.ReactiveKeyCommands$ExpireCommand.class
org.springframework.data.redis.connection.ReactiveStringCommands$SetBitCommand.class
org.springframework.data.redis.connection.convert.Converters$DistanceConverterFactory$DistanceConverter.class
org.springframework.data.redis.connection.convert.StringToRedisClientInfoConverter.class
org.springframework.data.redis.util.ByteUtils.class
org.springframework.data.redis.hash.ObjectHashMapper$NoOpReferenceResolver.class
org.springframework.data.redis.config.RedisNamespaceHandler.class
org.springframework.data.redis.Version.class
org.springframework.data.redis.support.atomic.package-info.class
org.springframework.data.redis.support.collections.DefaultRedisSet.class
org.springframework.data.redis.support.collections.DefaultRedisMap$1.class
org.springframework.data.redis.support.collections.RedisCollectionFactoryBean$CollectionType$5.class
org.springframework.data.redis.support.collections.RedisCollectionFactoryBean$CollectionType.class
META-INF/spring.handlers
org.springframework.data.redis.repository.core.MappingRedisEntityInformation.class
org.springframework.data.redis.repository.cdi.RedisRepositoryExtension.class
org.springframework.data.redis.repository.query.RedisQueryCreator.class
org.springframework.data.redis.serializer.RedisSerializationContext$SerializationPair.class
org.springframework.data.redis.serializer.GenericJackson2JsonRedisSerializer$NullValueSerializer.class
org.springframework.data.redis.serializer.DefaultRedisSerializationContext$1.class
org.springframework.data.redis.serializer.RedisElementWriter.class
org.springframework.data.redis.listener.RedisMessageListenerContainer$SubscriptionTask.class
org.springframework.data.redis.listener.RedisMessageListenerContainer.class
org.springframework.data.redis.core.mapping.RedisPersistentEntity.class
org.springframework.data.redis.core.RedisTemplate.class
org.springframework.data.redis.core.types.package-info.class
org.springframework.data.redis.core.HashOperationsEditor.class
org.springframework.data.redis.core.DefaultListOperations$9.class
org.springframework.data.redis.core.IndexWriter$IndexWriteMode.class
org.springframework.data.redis.core.DefaultReactiveHashOperations.class
org.springframework.data.redis.core.ValueOperations.class
org.springframework.data.redis.core.AbstractOperations.class
org.springframework.data.redis.core.DefaultReactiveZSetOperations.class
org.springframework.data.redis.core.RedisClusterCallback.class
org.springframework.data.redis.core.script.DefaultScriptExecutor.class
org.springframework.data.redis.core.RedisKeyValueAdapter$RedisUpdateObject$Index.class
org.springframework.data.redis.core.ValueOperationsEditor.class
org.springframework.data.redis.core.ReactiveGeoOperations.class
org.springframework.data.redis.core.ListOperationsEditor.class
org.springframework.data.redis.core.RedisKeyValueAdapter$MappingExpirationListener.class
org.springframework.data.redis.core.index.IndexDefinition$Condition.class
org.springframework.data.redis.core.index.RedisIndexDefinition$LowercaseIndexValueTransformer.class
org.springframework.data.redis.core.DefaultZSetOperations.class
org.springframework.data.redis.core.DefaultListOperations$5.class
org.springframework.data.redis.core.query.SortCriterion.class
org.springframework.data.redis.core.HashOperations.class
org.springframework.data.redis.core.DefaultClusterOperations.class
org.springframework.data.redis.core.convert.PathIndexResolver.class
org.springframework.data.redis.core.convert.Jsr310Converters$BytesToPeriodConverter.class
org.springframework.data.redis.core.convert.ReferenceResolverImpl.class
org.springframework.data.redis.core.convert.Jsr310Converters$BytesToDurationConverter.class
org.springframework.data.redis.core.convert.MappingRedisConverter$NaturalOrderingKeyComparator.class
org.springframework.data.redis.core.convert.CustomConversions.class
org.springframework.data.redis.core.convert.IndexResolver.class
org.springframework.data.redis.VersionParser.class
org.springframework.data.redis.cache.DefaultRedisCacheWriter.class
org.springframework.data.redis.connection.ClusterCommandExecutor$MultiNodeResult$ResultByKeyPositionComparator.class
org.springframework.data.redis.connection.SortParameters.class
org.springframework.data.redis.connection.ReactiveGeoCommands$GeoDistCommand.class
org.springframework.data.redis.connection.ReactiveSetCommands$SDiffCommand.class
org.springframework.data.redis.connection.FutureResult.class
org.springframework.data.redis.connection.lettuce.LettuceResult.class
org.springframework.data.redis.connection.lettuce.RedisClientProvider.class
org.springframework.data.redis.connection.lettuce.LettuceStringCommands.class
org.springframework.data.redis.connection.lettuce.LettuceZSetCommands$2.class
org.springframework.data.redis.connection.lettuce.LettucePool.class
org.springframework.data.redis.connection.lettuce.LettuceClientConfiguration$LettuceClientConfigurationBuilder.class
org.springframework.data.redis.connection.lettuce.LettuceReactiveRedisConnection$LettuceReactiveCallback.class
org.springframework.data.redis.connection.lettuce.LettuceSubscription.class
org.springframework.data.redis.connection.lettuce.LettuceSetCommands.class
org.springframework.data.redis.connection.lettuce.LettuceConnection$LettuceTransactionResultConverter.class
org.springframework.data.redis.connection.lettuce.LettuceResult$LettuceStatusResult.class
org.springframework.data.redis.connection.lettuce.LettuceReactiveClusterKeyCommands.class
org.springframework.data.redis.connection.lettuce.ClusterConnectionProvider.class
org.springframework.data.redis.connection.lettuce.LettuceReactiveClusterServerCommands$PropertiesCollector.class
org.springframework.data.redis.connection.lettuce.LettuceReactiveListCommands.class
org.springframework.data.redis.connection.lettuce.LettuceReactiveGeoCommands.class
org.springframework.data.redis.connection.util.package-info.class
org.springframework.data.redis.connection.RedisServer.class
org.springframework.data.redis.connection.ReactiveSetCommands$SIsMemberCommand.class
org.springframework.data.redis.connection.DefaultSortParameters.class
org.springframework.data.redis.connection.RedisZSetCommands$Aggregate.class
org.springframework.data.redis.connection.RedisClusterNode.class
org.springframework.data.redis.connection.ReactiveRedisConnection.class
org.springframework.data.redis.connection.NamedNode.class
org.springframework.data.redis.connection.ReactiveGeoCommands$GeoAddCommand.class
org.springframework.data.redis.connection.ClusterSlotHashUtil.class
org.springframework.data.redis.connection.MessageListener.class
org.springframework.data.redis.connection.Subscription.class
org.springframework.data.redis.connection.ReactiveHashCommands$HGetCommand.class
org.springframework.data.redis.connection.ReactiveZSetCommands$ZScoreCommand.class
org.springframework.data.redis.connection.ReactiveClusterHashCommands.class
org.springframework.data.redis.connection.ReactiveRedisConnection$Command.class
org.springframework.data.redis.connection.ReactiveZSetCommands$ZAddCommand.class
org.springframework.data.redis.connection.ReactiveKeyCommands$1.class
org.springframework.data.redis.connection.RedisConnectionCommands.class
org.springframework.data.redis.connection.ReactiveSetCommands$SDiffStoreCommand.class
org.springframework.data.redis.connection.ReactiveServerCommands.class
org.springframework.data.redis.connection.jedis.JedisSentinelConnection.class
org.springframework.data.redis.connection.jedis.JedisHashCommands.class
org.springframework.data.redis.connection.jedis.JedisClusterZSetCommands$1.class
org.springframework.data.redis.connection.jedis.JedisConverters$3.class
org.springframework.data.redis.connection.jedis.JedisMessageListener.class
org.springframework.data.redis.connection.jedis.JedisClusterConnection$JedisMultiKeyClusterCommandCallback.class
org.springframework.data.redis.connection.jedis.JedisClusterKeyCommands.class
org.springframework.data.redis.connection.jedis.JedisVersionUtil.class
org.springframework.data.redis.connection.jedis.JedisClientConfiguration$DefaultJedisClientConfigurationBuilder.class
org.springframework.data.redis.connection.ReactiveListCommands$LRemCommand.class
org.springframework.data.redis.connection.DefaultStringRedisConnection$DeserializingConverter.class
org.springframework.data.redis.connection.ClusterCommandExecutor$ClusterCommandCallback.class
org.springframework.data.redis.connection.ClusterCommandExecutor$NodeResult.class
org.springframework.data.redis.connection.convert.LongToBooleanConverter.class
org.springframework.data.redis.connection.convert.Converters.class
org.springframework.data.redis.util.package-info.class
org.springframework.data.redis.hash.ObjectHashMapper$1.class
org.springframework.data.redis.config.RedisCollectionParser.class
org.springframework.data.redis.support.atomic.CompareAndSet.class
org.springframework.data.redis.support.collections.DefaultRedisMap.class
org.springframework.data.redis.support.collections.AbstractRedisCollection.class
org.springframework.data.redis.support.collections.package-info.class
org.springframework.data.redis.support.collections.RedisCollectionFactoryBean.class
META-INF/spring.tooling
META-INF/maven/org.springframework.data/spring-data-redis/pom.xml
org.springframework.data.redis.repository.core.package-info.class
org.springframework.data.redis.repository.query.package-info.class
org.springframework.data.redis.serializer.RedisElementReader.class
org.springframework.data.redis.serializer.RedisSerializationContext.class
org.springframework.data.redis.listener.RedisMessageListenerContainer$SubscriptionTask$SubscriptionPresentCondition.class
org.springframework.data.redis.listener.adapter.package-info.class
org.springframework.data.redis.listener.ChannelTopic.class
org.springframework.data.redis.core.HyperLogLogOperations.class
org.springframework.data.redis.core.DefaultTypedTuple.class
org.springframework.data.redis.core.SessionCallback.class
org.springframework.data.redis.core.RedisQueryEngine.class
org.springframework.data.redis.core.DefaultBoundZSetOperations.class
org.springframework.data.redis.core.DefaultListOperations$8.class
org.springframework.data.redis.core.DefaultListOperations$4.class
org.springframework.data.redis.core.package-info.class
org.springframework.data.redis.core.DefaultListOperations$2.class
org.springframework.data.redis.core.DefaultSetOperations.class
org.springframework.data.redis.core.index.SimpleIndexDefinition.class
org.springframework.data.redis.core.index.package-info.class
org.springframework.data.redis.core.index.Indexed.class
org.springframework.data.redis.core.index.RedisIndexDefinition$CompositeValueTransformer.class
org.springframework.data.redis.core.ReactiveHashOperations.class
org.springframework.data.redis.core.TimeToLiveAccessor.class
org.springframework.data.redis.core.BulkMapper.class
org.springframework.data.redis.core.query.SortQueryBuilder.class
org.springframework.data.redis.core.RedisConnectionUtils$RedisTransactionSynchronizer.class
org.springframework.data.redis.core.convert.IndexedDataFactoryProvider$IndexedDataFactory.class
org.springframework.data.redis.core.convert.MappingRedisConverter$ClassNameKeySpaceResolver.class
org.springframework.data.redis.core.convert.Jsr310Converters$BytesToZonedDateTimeConverter.class
org.springframework.data.redis.core.convert.BinaryConverters$EnumToBytesConverter.class
org.springframework.data.redis.core.convert.BinaryConverters$BytesToEnumConverterFactory.class
org.springframework.data.redis.core.convert.IndexedDataFactoryProvider.class
org.springframework.data.redis.core.convert.RedisCustomConversions.class
org.springframework.data.redis.core.convert.IndexedDataFactoryProvider$GeoIndexedPropertyValueFactory.class
org.springframework.data.redis.core.BoundListOperations.class
org.springframework.data.redis.cache.CacheKeyPrefix.class
org.springframework.data.redis.connection.ReactiveZSetCommands$ZRangeCommand.class
org.springframework.data.redis.connection.RedisCommands.class
org.springframework.data.redis.connection.ReactiveNumberCommands$HIncrByCommand.class
org.springframework.data.redis.connection.lettuce.LettuceZSetCommands$1.class
org.springframework.data.redis.connection.lettuce.LettuceReactiveClusterZSetCommands.class
org.springframework.data.redis.connection.lettuce.LettuceConverters$GeoResultConverterFactory.class
org.springframework.data.redis.connection.lettuce.LettuceReactiveStringCommands$1.class
org.springframework.data.redis.connection.lettuce.LettuceExceptionConverter.class
org.springframework.data.redis.connection.lettuce.LettuceConverters$1.class
org.springframework.data.redis.connection.lettuce.LettuceClusterHyperLogLogCommands.class
org.springframework.data.redis.connection.lettuce.LettuceReactiveZSetCommands$1.class
org.springframework.data.redis.connection.lettuce.LettuceConverters$3.class
org.springframework.data.redis.connection.lettuce.LettuceSentinelConnection$DedicatedClientConnectionProvider.class
org.springframework.data.redis.connection.lettuce.LettuceReactiveNumberCommands.class
org.springframework.data.redis.connection.lettuce.LettuceClusterConnection.class
org.springframework.data.redis.connection.lettuce.LettuceClusterConnection$1.class
org.springframework.data.redis.connection.lettuce.LettuceReactiveRedisClusterConnection.class
org.springframework.data.redis.connection.lettuce.DefaultLettucePoolingClientConfiguration.class
org.springframework.data.redis.connection.ReactiveClusterSetCommands.class
org.springframework.data.redis.connection.ClusterCommandExecutionFailureException.class
org.springframework.data.redis.connection.ReactiveSetCommands$SMoveCommand.class
org.springframework.data.redis.connection.ReactiveRedisConnection$KeyCommand.class
org.springframework.data.redis.connection.ReactiveHyperLogLogCommands$PfMergeCommand.class
org.springframework.data.redis.connection.ReactiveGeoCommands.class
org.springframework.data.redis.connection.ReactiveHashCommands$HSetCommand.class
org.springframework.data.redis.connection.RedisScriptingCommands.class
org.springframework.data.redis.connection.ClusterTopologyProvider.class
org.springframework.data.redis.connection.StringRedisConnection.class
org.springframework.data.redis.connection.RedisTxCommands.class
org.springframework.data.redis.connection.ReactiveNumberCommands.class
org.springframework.data.redis.connection.ClusterInfo.class
org.springframework.data.redis.connection.ReactiveZSetCommands.class
org.springframework.data.redis.connection.ClusterCommandExecutor.class
org.springframework.data.redis.connection.ReactiveStringCommands$MSetCommand.class
org.springframework.data.redis.connection.RedisZSetCommands$Limit$1.class
org.springframework.data.redis.connection.ReactiveRedisConnection$ByteBufferResponse.class
org.springframework.data.redis.connection.RedisZSetCommands$Range.class
org.springframework.data.redis.connection.ReactiveHashCommands.class
org.springframework.data.redis.connection.jedis.JedisZSetCommands$1.class
org.springframework.data.redis.connection.jedis.JedisClusterServerCommands.class
org.springframework.data.redis.connection.jedis.JedisClientConfiguration$JedisSslClientConfigurationBuilder.class
org.springframework.data.redis.connection.jedis.JedisListCommands.class
org.springframework.data.redis.connection.jedis.JedisSetCommands.class
org.springframework.data.redis.connection.jedis.JedisSetCommands$1.class
org.springframework.data.redis.connection.jedis.JedisConverters$GeoResultConverterFactory$GeoResultConverter.class
org.springframework.data.redis.connection.jedis.JedisClientConfiguration$JedisPoolingClientConfigurationBuilder.class
org.springframework.data.redis.connection.jedis.JedisClusterConnection.class
org.springframework.data.redis.connection.RedisServerCommands$ShutdownOption.class
org.springframework.data.redis.connection.convert.ListConverter.class
org.springframework.data.redis.connection.convert.MapToPropertiesConverter.class
org.springframework.data.redis.connection.convert.Converters$1.class
org.springframework.data.redis.hash.ObjectHashMapper.class
org.springframework.data.redis.hash.Jackson2HashMapper.class
org.springframework.data.redis.support.atomic.RedisAtomicDouble.class
org.springframework.data.redis.support.collections.RedisMap.class
org.springframework.data.redis.support.collections.DefaultRedisMap$3.class
org.springframework.data.redis.support.collections.DefaultRedisList.class
org.springframework.data.redis.ExceptionTranslationStrategy.class
readme.txt
org.springframework.data.redis.repository.core.RedisEntityInformation.class
org.springframework.data.redis.repository.support.RedisRepositoryFactoryBean.class
org.springframework.data.redis.repository.query.RedisOperationChain$PathAndValue.class
org.springframework.data.redis.serializer.SerializationException.class
org.springframework.data.redis.serializer.RedisSerializer.class
org.springframework.data.redis.serializer.package-info.class
org.springframework.data.redis.serializer.RedisSerializationContext$RedisSerializationContextBuilder.class
org.springframework.data.redis.serializer.RedisSerializerToSerializationPairAdapter.class
org.springframework.data.redis.listener.RedisMessageListenerContainer$DispatchMessageListener.class
org.springframework.data.redis.listener.adapter.MessageListenerAdapter.class
org.springframework.data.redis.core.PartialUpdate$1.class
org.springframework.data.redis.core.RedisOperations.class
org.springframework.data.redis.core.mapping.RedisMappingContext$ConfigAwareTimeToLiveAccessor.class
org.springframework.data.redis.core.DefaultReactiveGeoOperations.class
org.springframework.data.redis.core.types.RedisClientInfo$RedisClientInfoBuilder.class
org.springframework.data.redis.core.types.RedisClientInfo$INFO.class
org.springframework.data.redis.core.types.RedisClientInfo.class
org.springframework.data.redis.core.RedisAccessor.class
org.springframework.data.redis.core.DefaultBoundHashOperations.class
org.springframework.data.redis.core.GeoOperationsEditor.class
org.springframework.data.redis.core.DefaultHashOperations$1$1.class
org.springframework.data.redis.core.RedisKeyExpiredEvent.class
org.springframework.data.redis.core.TimeoutUtils.class
org.springframework.data.redis.core.ReactiveSetOperations.class
org.springframework.data.redis.core.script.ScriptExecutor.class
org.springframework.data.redis.core.ZSetOperations.class
org.springframework.data.redis.core.DefaultHyperLogLogOperations.class
org.springframework.data.redis.core.DefaultValueOperations$1.class
org.springframework.data.redis.core.ConvertingCursor.class
org.springframework.data.redis.core.index.IndexDefinition.class
org.springframework.data.redis.core.index.GeoIndexed.class
org.springframework.data.redis.core.ReactiveHyperLogLogOperations.class
org.springframework.data.redis.core.Cursor.class
org.springframework.data.redis.core.query.DefaultSortQuery.class
org.springframework.data.redis.core.DefaultSetOperations$2.class
org.springframework.data.redis.core.DefaultListOperations$3.class
org.springframework.data.redis.core.convert.RedisData.class
org.springframework.data.redis.core.convert.KeyspaceConfiguration$KeyspaceSettings.class
org.springframework.data.redis.core.convert.GeoIndexedPropertyValue.class
org.springframework.data.redis.core.convert.IndexedDataFactoryProvider$SimpleIndexedPropertyValueFactory.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
依赖Jar: |
commons-pool2-${pool}.jar
/org.apache.commons/commons-pool2/${pool}
查看commons-pool2所有版本文件
|