组织ID: |
org.springframework.data |
项目ID: |
spring-data-redis |
版本: |
1.8.15.RELEASE |
最后修改时间: |
2018-09-10 21:03:00 |
包类型: |
jar |
标题: |
Spring Data Redis |
大小: |
1.18MB |
|
Maven引入代码: |
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-redis</artifactId>
<version>1.8.15.RELEASE</version>
</dependency>
|
Gradle引入代码: |
org.springframework.data:spring-data-redis:1.8.15.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>1.8.15.RELEASE</version>
<name>Spring Data Redis</name>
<parent>
<groupId>org.springframework.data.build</groupId>
<artifactId>spring-data-parent</artifactId>
<version>1.9.15.RELEASE</version>
</parent>
<properties>
<dist.key>DATAREDIS</dist.key>
<springdata.keyvalue>1.2.15.RELEASE</springdata.keyvalue>
<jta>1.1</jta>
<beanutils>1.9.2</beanutils>
<xstream>1.4.8</xstream>
<pool>2.2</pool>
<lettuce>4.2.2.Final</lettuce>
<jedis>2.9.0</jedis>
<srp>0.7</srp>
<jredis>06052013</jredis>
<multithreadedtc>1.01</multithreadedtc>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-pool2</artifactId>
<version>${pool}</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guava}</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>org.jredis</groupId>
<artifactId>jredis-core-api</artifactId>
<version>${jredis}</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.jredis</groupId>
<artifactId>jredis-core-ri</artifactId>
<version>${jredis}</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.github.spullara.redis</groupId>
<artifactId>client</artifactId>
<version>${srp}</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>biz.paluch.redis</groupId>
<artifactId>lettuce</artifactId>
<version>${lettuce}</version>
<optional>true</optional>
</dependency>
<!--Mapper -->
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-mapper-asl</artifactId>
<version>1.8.8</version>
<optional>true</optional>
</dependency>
<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>
<groupId>javax.enterprise</groupId>
<artifactId>cdi-api</artifactId>
<version>${cdi}</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>javax.el</groupId>
<artifactId>el-api</artifactId>
<version>${cdi}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.openwebbeans.test</groupId>
<artifactId>cditest-owb</artifactId>
<version>${webbeans}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</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>
</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>
<reuseForks>false</reuseForks>
<systemProperties>
<gemfire.disableShutdownHook>true</gemfire.disableShutdownHook>
<javax.net.ssl.keyStore>${basedir}/src/test/resources/trusted.keystore</javax.net.ssl.keyStore>
</systemProperties>
</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.RedisRepositoryExtension.class
org.springframework.data.redis.PassThroughExceptionTranslationStrategy.class
org.springframework.data.redis.serializer.GenericJackson2JsonRedisSerializer$NullValueSerializer.class
org.springframework.data.redis.listener.RedisMessageListenerContainer$DispatchMessageListener.class
org.springframework.data.redis.listener.adapter.MessageListenerAdapter$MethodInvoker.class
org.springframework.data.redis.core.PartialUpdate$1.class
org.springframework.data.redis.core.mapping.RedisMappingContext$ConfigAwareKeySpaceResolver.class
org.springframework.data.redis.core.DefaultBoundKeyOperations.class
org.springframework.data.redis.core.types.Expiration.class
org.springframework.data.redis.core.RedisTemplate$25.class
org.springframework.data.redis.core.DefaultListOperations$9.class
org.springframework.data.redis.core.ScanCursor.class
org.springframework.data.redis.core.ValueOperations.class
org.springframework.data.redis.core.DefaultZSetOperations$20.class
org.springframework.data.redis.core.DefaultClusterOperations$4.class
org.springframework.data.redis.core.DefaultClusterOperations$10.class
org.springframework.data.redis.core.DefaultClusterOperations$12.class
org.springframework.data.redis.core.RedisQueryEngine$1.class
org.springframework.data.redis.core.DefaultListOperations$13.class
org.springframework.data.redis.core.PartialUpdate$PropertyUpdate.class
org.springframework.data.redis.core.RedisTemplate$24.class
org.springframework.data.redis.core.script.DefaultScriptExecutor.class
org.springframework.data.redis.core.DefaultZSetOperations$2.class
org.springframework.data.redis.core.RedisKeyValueTemplate$RedisKeyValueCallback.class
org.springframework.data.redis.core.ZSetOperations.class
org.springframework.data.redis.core.DefaultValueOperations$11.class
org.springframework.data.redis.core.RedisTemplate$17.class
org.springframework.data.redis.core.DefaultHashOperations$1.class
org.springframework.data.redis.core.DefaultZSetOperations$4.class
org.springframework.data.redis.core.DefaultSetOperations$1.class
org.springframework.data.redis.core.DefaultSetOperations.class
org.springframework.data.redis.core.DefaultHashOperations.class
org.springframework.data.redis.core.index.RedisIndexDefinition$CompositeValueTransformer.class
org.springframework.data.redis.core.DefaultHashOperations$3.class
org.springframework.data.redis.core.DefaultZSetOperations$11.class
org.springframework.data.redis.core.DefaultZSetOperations$1.class
org.springframework.data.redis.core.RedisTemplate$29.class
org.springframework.data.redis.core.ListOperations.class
org.springframework.data.redis.core.query.SortQuery.class
org.springframework.data.redis.core.DefaultSetOperations$12.class
org.springframework.data.redis.core.DefaultListOperations$18.class
org.springframework.data.redis.core.DefaultListOperations$3.class
org.springframework.data.redis.core.convert.IndexedDataFactoryProvider$IndexedDataFactory.class
org.springframework.data.redis.core.convert.RedisData.class
org.springframework.data.redis.core.convert.Jsr310Converters$BytesToPeriodConverter.class
org.springframework.data.redis.core.convert.BinaryConverters$DateToBytesConverter.class
org.springframework.data.redis.core.convert.BinaryConverters$StringToBytesConverter.class
org.springframework.data.redis.core.convert.BinaryConverters$BytesToStringConverter.class
org.springframework.data.redis.core.convert.BinaryConverters$BytesToDateConverter.class
org.springframework.data.redis.core.convert.KeyspaceConfiguration$DefaultKeyspaceSetting.class
org.springframework.data.redis.core.convert.Jsr310Converters$BytesToInstantConverter.class
org.springframework.data.redis.core.GeoOperations.class
org.springframework.data.redis.VersionParser.class
org.springframework.data.redis.cache.RedisCache$1.class
org.springframework.data.redis.cache.RedisCache$CacheValueRetrievalExceptionFactory.class
org.springframework.data.redis.cache.RedisCacheKey.class
org.springframework.data.redis.cache.RedisCache$RedisCachePutIfAbsentCallback.class
org.springframework.data.redis.connection.ClusterCommandExecutor$NodeExecution.class
org.springframework.data.redis.connection.RedisInvalidSubscriptionException.class
org.springframework.data.redis.connection.FutureResult.class
org.springframework.data.redis.connection.RedisPipelineException.class
org.springframework.data.redis.connection.lettuce.LettuceClusterConnection$20.class
org.springframework.data.redis.connection.lettuce.LettuceClusterConnection$22.class
org.springframework.data.redis.connection.lettuce.LettuceConverters$9.class
org.springframework.data.redis.connection.lettuce.LettuceConverters$GeoResultConverterFactory$GeoResultConverter.class
org.springframework.data.redis.connection.lettuce.LettuceExceptionConverter.class
org.springframework.data.redis.connection.lettuce.AuthenticatingRedisClient.class
org.springframework.data.redis.connection.lettuce.LettuceConverters$14.class
org.springframework.data.redis.connection.lettuce.LettuceClusterConnection$6.class
org.springframework.data.redis.connection.lettuce.LettuceClusterConnection$34.class
org.springframework.data.redis.connection.lettuce.LettuceConverters$2.class
org.springframework.data.redis.connection.lettuce.LettuceConnection$5.class
org.springframework.data.redis.connection.util.AbstractSubscription.class
org.springframework.data.redis.connection.RedisClusterNode.class
org.springframework.data.redis.connection.ClusterTopologyProvider.class
org.springframework.data.redis.connection.Subscription.class
org.springframework.data.redis.connection.ClusterInfo.class
org.springframework.data.redis.connection.DefaultStringRedisConnection$1.class
org.springframework.data.redis.connection.jredis.JredisConnectionFactory.class
org.springframework.data.redis.connection.jredis.JredisPool.class
org.springframework.data.redis.connection.ClusterTopology.class
org.springframework.data.redis.connection.SortParameters$Order.class
org.springframework.data.redis.connection.DefaultStringRedisConnection$1$1.class
org.springframework.data.redis.connection.StringRedisConnection$StringTuple.class
org.springframework.data.redis.connection.jedis.JedisConnection$5.class
org.springframework.data.redis.connection.jedis.JedisClusterConnection$58.class
org.springframework.data.redis.connection.jedis.JedisConverters$7.class
org.springframework.data.redis.connection.jedis.JedisClusterConnection$46.class
org.springframework.data.redis.connection.jedis.JedisClusterConnection$14.class
org.springframework.data.redis.connection.jedis.JedisClusterConnection$30.class
org.springframework.data.redis.connection.jedis.JedisClusterConnection$2.class
org.springframework.data.redis.connection.srp.SrpUtils.class
org.springframework.data.redis.connection.srp.SrpConverters$2.class
org.springframework.data.redis.connection.srp.SrpSubscription.class
org.springframework.data.redis.connection.srp.SrpConverters$7.class
org.springframework.data.redis.connection.DefaultStringRedisConnection$DeserializingConverter.class
org.springframework.data.redis.connection.RedisServerCommands$ShutdownOption.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.connection.DefaultStringTuple.class
org.springframework.data.redis.hash.ObjectHashMapper$1.class
org.springframework.data.redis.Version.class
org.springframework.data.redis.support.collections.DefaultRedisSet$DefaultRedisSetIterator.class
org.springframework.data.redis.support.collections.DefaultRedisMap$1.class
org.springframework.data.redis.support.collections.RedisCollectionFactoryBean$CollectionType$3.class
org.springframework.data.redis.support.collections.RedisList.class
org.springframework.data.redis.support.collections.RedisCollectionFactoryBean$CollectionType$2.class
org.springframework.data.redis.support.collections.RedisCollectionFactoryBean.class
org.springframework.data.redis.support.collections.RedisCollectionFactoryBean$1.class
org.springframework.data.redis.support.collections.RedisCollectionFactoryBean$CollectionType$4.class
org.springframework.data.redis.support.collections.RedisCollectionFactoryBean$CollectionType.class
org.springframework.data.redis.support.collections.DefaultRedisZSet$1.class
org.springframework.data.redis.ClusterStateFailureException.class
changelog.txt
org.springframework.data.redis.repository.configuration.EnableRedisRepositories.class
org.springframework.data.redis.repository.cdi.RedisRepositoryBean.class
org.springframework.data.redis.repository.query.RedisOperationChain$PathAndValue.class
org.springframework.data.redis.listener.adapter.MessageListenerAdapter$MostSpecificMethodFilter.class
org.springframework.data.redis.listener.ChannelTopic.class
org.springframework.data.redis.listener.Topic.class
org.springframework.data.redis.core.mapping.BasicRedisPersistentEntity.class
org.springframework.data.redis.core.RedisKeyValueAdapter$2.class
org.springframework.data.redis.core.RedisTemplate$21.class
org.springframework.data.redis.core.DefaultGeoOperations$12.class
org.springframework.data.redis.core.RedisAccessor.class
org.springframework.data.redis.core.RedisKeyValueTemplate.class
org.springframework.data.redis.core.IndexWriter$IndexWriteMode.class
org.springframework.data.redis.core.DefaultHashOperations$14$1.class
org.springframework.data.redis.core.DefaultClusterOperations$3.class
org.springframework.data.redis.core.RedisConnectionUtils.class
org.springframework.data.redis.core.RedisConnectionUtils$ConnectionSplittingInterceptor.class
org.springframework.data.redis.core.RedisTemplate$22.class
org.springframework.data.redis.core.DefaultListOperations$17.class
org.springframework.data.redis.core.DefaultHashOperations$9.class
org.springframework.data.redis.core.DefaultHashOperations$14$1$1.class
org.springframework.data.redis.core.RedisTemplate$5.class
org.springframework.data.redis.core.RedisKeyValueAdapter$RedisUpdateObject$Index.class
org.springframework.data.redis.core.RedisKeyValueAdapter$9.class
org.springframework.data.redis.core.DefaultZSetOperations$12.class
org.springframework.data.redis.core.DefaultSetOperations$15.class
org.springframework.data.redis.core.RedisKeyValueTemplate$1.class
org.springframework.data.redis.core.DefaultListOperations$6.class
org.springframework.data.redis.core.DefaultZSetOperations$30.class
org.springframework.data.redis.core.BoundZSetOperations.class
org.springframework.data.redis.core.index.IndexValueTransformer.class
org.springframework.data.redis.core.index.RedisIndexDefinition$OrCondition.class
org.springframework.data.redis.core.index.GeoIndexed.class
org.springframework.data.redis.core.StringRedisTemplate.class
org.springframework.data.redis.core.RedisTemplate$16.class
org.springframework.data.redis.core.DefaultZSetOperations$3.class
org.springframework.data.redis.core.DefaultSetOperations$17$1.class
org.springframework.data.redis.core.query.QueryUtils.class
org.springframework.data.redis.core.DefaultSetOperations$2.class
org.springframework.data.redis.core.DefaultValueOperations$16.class
org.springframework.data.redis.core.DefaultGeoOperations$6.class
org.springframework.data.redis.core.convert.MappingRedisConverter$2.class
org.springframework.data.redis.core.convert.CustomConversions$Producer.class
org.springframework.data.redis.core.convert.SimpleIndexedPropertyValue.class
org.springframework.data.redis.core.convert.Jsr310Converters$BytesToDurationConverter.class
org.springframework.data.redis.core.convert.MappingRedisConverter$ConverterAwareParameterValueProvider.class
org.springframework.data.redis.core.convert.MappingRedisConverter$KeyspaceIdentifier.class
org.springframework.data.redis.cache.RedisCache$AbstractRedisCacheCallback.class
org.springframework.data.redis.cache.RedisCache$RedisCacheCleanByKeysCallback.class
org.springframework.data.redis.cache.RedisCachePrefix.class
org.springframework.data.redis.cache.DefaultRedisCachePrefix.class
org.springframework.data.redis.connection.RedisZSetCommands$Range$Boundary.class
org.springframework.data.redis.connection.lettuce.LettuceClusterConnection$9.class
org.springframework.data.redis.connection.lettuce.LettuceClusterConnection$23.class
org.springframework.data.redis.connection.lettuce.LettuceConnection$TypeHints.class
org.springframework.data.redis.connection.lettuce.LettuceConverters$GeoResultConverterFactory.class
org.springframework.data.redis.connection.lettuce.LettuceConverters$18.class
org.springframework.data.redis.connection.lettuce.LettuceConverters$3.class
org.springframework.data.redis.connection.lettuce.LettuceClusterConnection$36.class
org.springframework.data.redis.connection.lettuce.LettuceClusterConnection.class
org.springframework.data.redis.connection.RedisSentinelConnection.class
org.springframework.data.redis.connection.util.Base64.class
org.springframework.data.redis.connection.RedisClusterConnection.class
org.springframework.data.redis.connection.ClusterNodeResourceProvider.class
org.springframework.data.redis.connection.RedisSetCommands.class
org.springframework.data.redis.connection.HyperLogLogCommands.class
org.springframework.data.redis.connection.RedisHashCommands.class
org.springframework.data.redis.connection.RedisSentinelConfiguration.class
org.springframework.data.redis.connection.RedisGeoCommands$GeoRadiusCommandArgs.class
org.springframework.data.redis.connection.jedis.JedisClusterConnection$20.class
org.springframework.data.redis.connection.jedis.JedisClusterConnection$45.class
org.springframework.data.redis.connection.jedis.JedisConnection$3.class
org.springframework.data.redis.connection.jedis.JedisConnection$JedisStatusResult.class
org.springframework.data.redis.connection.jedis.JedisClusterConnection$62.class
org.springframework.data.redis.connection.jedis.JedisClusterConnection$25.class
org.springframework.data.redis.connection.jedis.JedisConverters$9.class
org.springframework.data.redis.connection.jedis.JedisClusterConnection.class
org.springframework.data.redis.connection.convert.TransactionResultConverter.class
org.springframework.data.redis.connection.convert.StringToPropertiesConverter.class
org.springframework.data.redis.connection.convert.StringToRedisClientInfoConverter.class
org.springframework.data.redis.hash.HashMapper.class
org.springframework.data.redis.hash.ObjectHashMapper.class
org.springframework.data.redis.hash.DecoratingStringHashMapper.class
org.springframework.data.redis.config.RedisCollectionParser.class
org.springframework.data.redis.ClusterRedirectException.class
org.springframework.data.redis.support.collections.DefaultRedisMap.class
org.springframework.data.redis.support.collections.DefaultRedisList$DefaultRedisListIterator.class
org.springframework.data.redis.support.collections.DefaultRedisZSet.class
org.springframework.data.redis.RedisSystemException.class
META-INF/spring.handlers
org.springframework.data.redis.repository.configuration.RedisRepositoryConfigurationExtension.class
org.springframework.data.redis.repository.support.RedisRepositoryFactoryBean.class
org.springframework.data.redis.serializer.SerializationException.class
org.springframework.data.redis.serializer.StringRedisSerializer.class
org.springframework.data.redis.listener.KeyExpirationEventMessageListener.class
org.springframework.data.redis.listener.adapter.MessageListenerAdapter$MethodInvoker$1.class
org.springframework.data.redis.core.DefaultClusterOperations$13.class
org.springframework.data.redis.core.mapping.RedisPersistentEntity.class
org.springframework.data.redis.core.DefaultZSetOperations$9.class
org.springframework.data.redis.core.DefaultBoundListOperations.class
org.springframework.data.redis.core.DefaultClusterOperations$11.class
org.springframework.data.redis.core.HashOperationsEditor.class
org.springframework.data.redis.core.DefaultZSetOperations$22.class
org.springframework.data.redis.core.RedisKeyValueAdapter$4.class
org.springframework.data.redis.core.DefaultBoundHashOperations.class
org.springframework.data.redis.core.RedisTemplate$6.class
org.springframework.data.redis.core.RedisTemplate$27.class
org.springframework.data.redis.core.AbstractOperations.class
org.springframework.data.redis.core.DefaultZSetOperations$18.class
org.springframework.data.redis.core.RedisKeyValueAdapter$3.class
org.springframework.data.redis.core.RedisTemplate$7.class
org.springframework.data.redis.core.BoundKeyOperations.class
org.springframework.data.redis.core.DefaultValueOperations$9.class
org.springframework.data.redis.core.RedisTemplate$19.class
org.springframework.data.redis.core.script.DigestUtils.class
org.springframework.data.redis.core.DefaultHashOperations$14.class
org.springframework.data.redis.core.ValueOperationsEditor.class
org.springframework.data.redis.core.DefaultSetOperations$7.class
org.springframework.data.redis.core.DefaultZSetOperations$10.class
org.springframework.data.redis.core.DefaultGeoOperations$1.class
org.springframework.data.redis.core.DefaultGeoOperations$5.class
org.springframework.data.redis.core.DefaultValueOperations$15.class
org.springframework.data.redis.core.DefaultClusterOperations$8.class
org.springframework.data.redis.core.DefaultSetOperations$3.class
org.springframework.data.redis.core.index.IndexDefinitionProvider.class
org.springframework.data.redis.core.index.IndexDefinition$IndexingContext.class
org.springframework.data.redis.core.index.PathBasedRedisIndexDefinition.class
org.springframework.data.redis.core.DefaultSetOperations$14.class
org.springframework.data.redis.core.TimeToLiveAccessor.class
org.springframework.data.redis.core.DefaultListOperations$7.class
org.springframework.data.redis.core.DefaultHashOperations$4.class
org.springframework.data.redis.core.RedisTemplate$8.class
org.springframework.data.redis.core.RedisKeyValueAdapter$8.class
org.springframework.data.redis.core.DefaultSetOperations$16.class
org.springframework.data.redis.core.RedisConnectionUtils$RedisTransactionSynchronizer.class
org.springframework.data.redis.core.DefaultListOperations$1.class
org.springframework.data.redis.core.convert.MappingRedisConverter$ClassNameKeySpaceResolver.class
org.springframework.data.redis.core.convert.MappingRedisConverter$3.class
org.springframework.data.redis.core.convert.PathIndexResolver.class
org.springframework.data.redis.core.convert.Jsr310Converters$BytesToLocalTimeConverter.class
org.springframework.data.redis.core.convert.BinaryConverters$BytesToNumberConverterFactory$BytesToNumberConverter.class
org.springframework.data.redis.core.convert.CustomConversions$1.class
org.springframework.data.redis.core.convert.Bucket.class
org.springframework.data.redis.core.convert.IndexedData.class
org.springframework.data.redis.core.convert.BinaryConverters$BytesToEnumConverterFactory$BytesToEnum.class
org.springframework.data.redis.core.convert.CustomConversions$2.class
org.springframework.data.redis.core.convert.GeoIndexedPropertyValue.class
org.springframework.data.redis.core.convert.MappingRedisConverter$RedisTypeAliasAccessor.class
org.springframework.data.redis.core.convert.KeyspaceConfiguration.class
org.springframework.data.redis.core.convert.IndexedDataFactoryProvider$SimpleIndexedPropertyValueFactory.class
org.springframework.data.redis.core.convert.CompositeIndexResolver.class
org.springframework.data.redis.core.convert.Jsr310Converters$InstantToBytesConverter.class
org.springframework.data.redis.core.convert.BinaryConverters$BytesToBooleanConverter.class
org.springframework.data.redis.core.convert.BinaryConverters.class
org.springframework.data.redis.core.convert.Jsr310Converters$ZoneIdToBytesConverter.class
org.springframework.data.redis.core.convert.Jsr310Converters$LocalDateToBytesConverter.class
org.springframework.data.redis.core.convert.Jsr310Converters.class
org.springframework.data.redis.core.BoundListOperations.class
org.springframework.data.redis.connection.SortParameters.class
org.springframework.data.redis.connection.lettuce.LettuceClusterConnection$24.class
org.springframework.data.redis.connection.lettuce.LettuceClusterConnection$19.class
org.springframework.data.redis.connection.lettuce.LettuceConverters$GeoResultsConverterFactory$GeoResultsConverter.class
org.springframework.data.redis.connection.lettuce.LettuceConnection$LettuceResult.class
org.springframework.data.redis.connection.lettuce.LettuceConnection$LettuceStatusResult.class
org.springframework.data.redis.connection.lettuce.LettuceClusterConnection$4.class
org.springframework.data.redis.connection.lettuce.LettuceConverters.class
org.springframework.data.redis.connection.lettuce.LettuceClusterConnection$17.class
org.springframework.data.redis.connection.lettuce.LettuceConverters$13.class
org.springframework.data.redis.connection.util.ByteArrayWrapper.class
org.springframework.data.redis.connection.RedisClusterNode$RedisClusterNodeBuilder.class
org.springframework.data.redis.connection.RedisClusterNode$Flag.class
org.springframework.data.redis.connection.RedisClusterCommands$AddSlots.class
org.springframework.data.redis.connection.ClusterCommandExecutor$MulitNodeResult.class
org.springframework.data.redis.connection.RedisGeoCommands.class
org.springframework.data.redis.connection.RedisServerCommands.class
org.springframework.data.redis.connection.RedisNode$RedisNodeBuilder.class
org.springframework.data.redis.connection.RedisGeoCommands$GeoRadiusCommandArgs$Flag.class
org.springframework.data.redis.connection.jredis.JredisUtils.class
org.springframework.data.redis.connection.jredis.JredisConnection.class
org.springframework.data.redis.connection.jedis.JedisClusterConnection$41.class
org.springframework.data.redis.connection.jedis.JedisConverters$GeoResultsConverterFactory.class
org.springframework.data.redis.connection.jedis.JedisClusterConnection$8.class
org.springframework.data.redis.connection.jedis.JedisConverters$5.class
org.springframework.data.redis.connection.jedis.JedisClusterConnection$27.class
org.springframework.data.redis.connection.jedis.JedisClusterConnection$29.class
org.springframework.data.redis.connection.jedis.JedisExceptionConverter.class
org.springframework.data.redis.connection.srp.SrpConverters$9.class
org.springframework.data.redis.connection.srp.SrpConnection$SrpGenericResult.class
org.springframework.data.redis.connection.srp.SrpConverters.class
org.springframework.data.redis.connection.srp.SrpConnection$SrpStatusResult.class
org.springframework.data.redis.connection.ClusterCommandExecutor$MulitNodeResult$ResultByKeyPositionComparator.class
org.springframework.data.redis.connection.RedisZSetCommands$Limit.class
org.springframework.data.redis.connection.convert.ListConverter.class
org.springframework.data.redis.connection.convert.Converters$DistanceConverterFactory$DistanceConverter.class
org.springframework.data.redis.connection.convert.Converters$DistanceConverterFactory.class
org.springframework.data.redis.hash.ObjectHashMapper$NoOpIndexResolver.class
org.springframework.data.redis.FallbackExceptionTranslationStrategy.class
org.springframework.data.redis.support.collections.DefaultRedisMap$DefaultRedisMapEntry.class
org.springframework.data.redis.support.collections.DefaultRedisMap$3.class
org.springframework.data.redis.support.collections.RedisZSet.class
META-INF/spring.schemas
license.txt
org.springframework.data.redis.repository.core.MappingRedisEntityInformation.class
org.springframework.data.redis.repository.support.RedisRepositoryFactory.class
org.springframework.data.redis.serializer.OxmSerializer.class
org.springframework.data.redis.serializer.Jackson2JsonRedisSerializer.class
org.springframework.data.redis.listener.RedisMessageListenerContainer$SubscriptionTask$PatternSubscriptionTask.class
org.springframework.data.redis.listener.RedisMessageListenerContainer$1.class
org.springframework.data.redis.core.DefaultZSetOperations$19.class
org.springframework.data.redis.core.DefaultZSetOperations$24.class
org.springframework.data.redis.core.mapping.RedisPersistentProperty.class
org.springframework.data.redis.core.DefaultGeoOperations$8.class
org.springframework.data.redis.core.DefaultListOperations$14.class
org.springframework.data.redis.core.RedisQueryEngine$2.class
org.springframework.data.redis.core.types.RedisClientInfo$INFO.class
org.springframework.data.redis.core.ScanOptions$ScanOptionsBuilder.class
org.springframework.data.redis.core.TimeToLive.class
org.springframework.data.redis.core.DefaultHashOperations$8.class
org.springframework.data.redis.core.TimeoutUtils.class
org.springframework.data.redis.core.RedisTemplate$1.class
org.springframework.data.redis.core.DefaultZSetOperations$25.class
org.springframework.data.redis.core.RedisTemplate$3.class
org.springframework.data.redis.core.DefaultZSetOperations$8.class
org.springframework.data.redis.core.DefaultZSetOperations$21.class
org.springframework.data.redis.core.DefaultZSetOperations$23.class
org.springframework.data.redis.core.script.DefaultRedisScript.class
org.springframework.data.redis.core.SetOperationsEditor.class
org.springframework.data.redis.core.DefaultGeoOperations$3.class
org.springframework.data.redis.core.RedisTemplate$28.class
org.springframework.data.redis.core.RedisTemplate$31.class
org.springframework.data.redis.core.RedisQueryEngine$RedisCriteriaAccessor.class
org.springframework.data.redis.core.RedisKeyValueAdapter$MappingExpirationListener$1.class
org.springframework.data.redis.core.ZSetOperations$TypedTuple.class
org.springframework.data.redis.core.DefaultValueOperations$1.class
org.springframework.data.redis.core.DefaultValueOperations$3.class
org.springframework.data.redis.core.DefaultGeoOperations$7.class
org.springframework.data.redis.core.index.SpelIndexDefinition.class
org.springframework.data.redis.core.index.RedisIndexDefinition.class
org.springframework.data.redis.core.RedisConnectionUtils$RedisConnectionHolder.class
org.springframework.data.redis.core.DefaultSetOperations$4.class
org.springframework.data.redis.core.BoundHashOperations.class
org.springframework.data.redis.core.RedisKeyValueAdapter$EnableKeyspaceEvents.class
org.springframework.data.redis.core.DefaultListOperations$5.class
org.springframework.data.redis.core.DefaultGeoOperations$2.class
org.springframework.data.redis.core.query.SortQueryBuilder.class
org.springframework.data.redis.core.DefaultHashOperations$11.class
org.springframework.data.redis.core.DefaultClusterOperations$9.class
org.springframework.data.redis.core.DefaultZSetOperations$7.class
org.springframework.data.redis.core.RedisTemplate$12.class
org.springframework.data.redis.core.convert.MappingRedisConverter$NaturalOrderingKeyComparator$Part.class
org.springframework.data.redis.core.convert.KeyspaceConfiguration$KeyspaceSettings.class
org.springframework.data.redis.core.convert.MappingRedisConverter$4.class
org.springframework.data.redis.core.convert.CustomConversions$ConverterRegistration.class
org.springframework.data.redis.core.convert.BinaryConverters$BytesToNumberConverterFactory.class
org.springframework.data.redis.core.convert.MappingRedisConverter.class
org.springframework.data.redis.core.CloseSuppressingInvocationHandler.class
org.springframework.data.redis.core.DefaultSetOperations$10.class
org.springframework.data.redis.cache.RedisCacheElement.class
org.springframework.data.redis.connection.RedisCommands.class
org.springframework.data.redis.connection.lettuce.LettuceConverters$8.class
org.springframework.data.redis.connection.lettuce.LettuceClusterConnection$45.class
org.springframework.data.redis.connection.lettuce.LettuceClusterConnection$18.class
org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory.class
org.springframework.data.redis.connection.lettuce.LettuceClusterConnection$16.class
org.springframework.data.redis.connection.lettuce.LettuceMessageListener.class
org.springframework.data.redis.connection.lettuce.LettuceConverters$17.class
org.springframework.data.redis.connection.lettuce.LettuceClusterConnection$1.class
org.springframework.data.redis.connection.lettuce.LettuceClusterConnection$35.class
org.springframework.data.redis.connection.ClusterCommandExecutor$MulitNodeResult$ResultByReferenceKeyPositionComparator.class
org.springframework.data.redis.connection.ClusterCommandExecutor$MultiKeyClusterCommandCallback.class
org.springframework.data.redis.connection.ClusterCommandExecutionFailureException.class
org.springframework.data.redis.connection.Message.class
org.springframework.data.redis.connection.RedisStringCommands$SetOption.class
org.springframework.data.redis.connection.ClusterSlotHashUtil.class
org.springframework.data.redis.connection.ConnectionUtils.class
org.springframework.data.redis.connection.Pool.class
org.springframework.data.redis.connection.ReturnType.class
org.springframework.data.redis.connection.DefaultStringRedisConnection$TupleConverter.class
org.springframework.data.redis.connection.RedisConnectionCommands.class
org.springframework.data.redis.connection.ClusterInfo$Info.class
org.springframework.data.redis.connection.RedisClusterCommands.class
org.springframework.data.redis.connection.jedis.JedisSentinelConnection.class
org.springframework.data.redis.connection.jedis.JedisClusterConnection$63.class
org.springframework.data.redis.connection.jedis.JedisClusterConnection$JedisClusterCommandCallback.class
org.springframework.data.redis.connection.jedis.JedisClusterConnection$60.class
org.springframework.data.redis.connection.jedis.JedisClusterConnection$7.class
org.springframework.data.redis.connection.jedis.JedisConverters.class
org.springframework.data.redis.connection.jedis.JedisConverters$GeoResultConverterFactory.class
org.springframework.data.redis.connection.jedis.JedisClusterConnection$55.class
org.springframework.data.redis.connection.jedis.JedisClusterConnection$6.class
org.springframework.data.redis.connection.jedis.JedisConnection.class
org.springframework.data.redis.connection.RedisServerCommands$MigrateOption.class
org.springframework.data.redis.connection.convert.Converters$DeserializingGeoResultsConverter.class
org.springframework.data.redis.connection.convert.MapToPropertiesConverter.class
org.springframework.data.redis.connection.convert.MapConverter.class
org.springframework.data.redis.connection.convert.Converters$2.class
org.springframework.data.redis.hash.Jackson2HashMapper.class
org/springframework/data/redis/config/spring-redis-1.0.xsd
org.springframework.data.redis.support.collections.RedisCollectionFactoryBean$CollectionType$1.class
org.springframework.data.redis.support.collections.RedisCollection.class
META-INF/maven/org.springframework.data/spring-data-redis/pom.xml
org.springframework.data.redis.repository.core.RedisEntityInformation.class
org.springframework.data.redis.repository.query.RedisOperationChain$NearPath.class
org.springframework.data.redis.serializer.GenericToStringSerializer$Converter.class
org.springframework.data.redis.serializer.GenericJackson2JsonRedisSerializer.class
org.springframework.data.redis.listener.RedisMessageListenerContainer$SubscriptionTask$PatternSubscriptionPresentCondition.class
org.springframework.data.redis.listener.RedisMessageListenerContainer$SubscriptionTask$SubscriptionPresentCondition.class
org.springframework.data.redis.listener.adapter.RedisListenerExecutionFailedException.class
org.springframework.data.redis.core.mapping.RedisMappingContext$ConfigAwareTimeToLiveAccessor$2.class
org.springframework.data.redis.core.SetOperations.class
org.springframework.data.redis.core.DefaultClusterOperations$5.class
org.springframework.data.redis.core.BoundGeoOperations.class
org.springframework.data.redis.core.DefaultListOperations$10.class
org.springframework.data.redis.core.RedisKeyspaceEvent.class
org.springframework.data.redis.core.RedisKeyExpiredEvent.class
org.springframework.data.redis.core.RedisHash.class
org.springframework.data.redis.core.SessionCallback.class
org.springframework.data.redis.core.RedisKeyValueAdapter$1.class
org.springframework.data.redis.core.DefaultBoundGeoOperations.class
org.springframework.data.redis.core.DefaultGeoOperations.class
org.springframework.data.redis.core.RedisKeyValueAdapter$7.class
org.springframework.data.redis.core.DefaultGeoOperations$11.class
org.springframework.data.redis.core.ScanOptions$1.class
org.springframework.data.redis.core.DefaultListOperations$11.class
org.springframework.data.redis.core.script.DefaultScriptExecutor$1.class
org.springframework.data.redis.core.DefaultListOperations$4.class
org.springframework.data.redis.core.ClusterOperations.class
org.springframework.data.redis.core.DefaultValueOperations$5.class
org.springframework.data.redis.core.RedisTemplate$13.class
org.springframework.data.redis.core.DefaultSetOperations$11.class
org.springframework.data.redis.core.DefaultHashOperations$12.class
org.springframework.data.redis.core.DefaultHashOperations$10.class
org.springframework.data.redis.core.ConvertingCursor.class
org.springframework.data.redis.core.index.IndexDefinition$Condition.class
org.springframework.data.redis.core.index.IndexDefinition.class
org.springframework.data.redis.core.index.ConfigurableIndexDefinitionProvider.class
org.springframework.data.redis.core.DefaultBoundSetOperations.class
org.springframework.data.redis.core.DefaultBoundValueOperations.class
org.springframework.data.redis.core.KeyBoundCursor.class
org.springframework.data.redis.core.query.DefaultSortQuery.class
org.springframework.data.redis.core.DefaultZSetOperations$17.class
org.springframework.data.redis.core.RedisCommand.class
org.springframework.data.redis.core.DefaultHashOperations$2.class
org.springframework.data.redis.core.convert.Jsr310Converters$LocalTimeToBytesConverter.class
org.springframework.data.redis.core.convert.ReferenceResolverImpl$1.class
org.springframework.data.redis.core.convert.SpelIndexResolver.class
org.springframework.data.redis.core.convert.BinaryConverters$BytesToEnumConverterFactory.class
org.springframework.data.redis.core.convert.RedisConverter.class
org.springframework.data.redis.core.convert.MappingRedisConverter$BinaryKeyspaceIdentifier.class
org.springframework.data.redis.core.convert.MappingConfiguration.class
org.springframework.data.redis.core.convert.Jsr310Converters$BytesToLocalDateConverter.class
org.springframework.data.redis.core.DefaultValueOperations$14.class
org.springframework.data.redis.core.DefaultZSetOperations$15.class
org.springframework.data.redis.core.ScanCursor$CursorState.class
org.springframework.data.redis.connection.RedisGeoCommands$DistanceUnit.class
org.springframework.data.redis.connection.RedisClusterNode$SlotRange.class
org.springframework.data.redis.connection.lettuce.LettuceClusterConnection$41.class
org.springframework.data.redis.connection.lettuce.LettuceClusterConnection$LettuceClusterTopologyProvider.class
org.springframework.data.redis.connection.lettuce.LettuceClusterConnection$43.class
org.springframework.data.redis.connection.lettuce.LettuceClusterConnection$42.class
org.springframework.data.redis.connection.lettuce.LettuceClusterConnection$LettuceClusterNodeResourceProvider.class
org.springframework.data.redis.connection.lettuce.DefaultLettucePool$LettuceFactory.class
org.springframework.data.redis.connection.lettuce.LettuceClusterConnection$44.class
org.springframework.data.redis.connection.lettuce.LettuceSentinelConnection.class
org.springframework.data.redis.connection.lettuce.LettuceClusterConnection$32.class
org.springframework.data.redis.connection.lettuce.LettuceConnection$2.class
org.springframework.data.redis.connection.lettuce.LettuceSubscription.class
org.springframework.data.redis.connection.lettuce.LettuceConverters$GeoResultsConverterFactory.class
org.springframework.data.redis.connection.lettuce.LettuceClusterConnection$15.class
org.springframework.data.redis.connection.lettuce.LettuceClusterConnection$31.class
org.springframework.data.redis.connection.lettuce.LettuceClusterConnection$11.class
org.springframework.data.redis.connection.util.ByteArraySet.class
org.springframework.data.redis.connection.RedisListCommands$Position.class
org.springframework.data.redis.connection.DefaultStringRedisConnection$StringTupleConverter.class
org.springframework.data.redis.connection.RedisSentinelConfiguration$1.class
org.springframework.data.redis.connection.DataType.class
org.springframework.data.redis.connection.RedisZSetCommands$Tuple.class
org.springframework.data.redis.connection.ClusterCommandExecutor$PositionalKey.class
org.springframework.data.redis.connection.AbstractRedisConnection.class
org.springframework.data.redis.connection.jredis.JredisPool$JredisFactory.class
org.springframework.data.redis.connection.jedis.JedisClusterConnection$65.class
org.springframework.data.redis.connection.jedis.JedisClusterConnection$26.class
org.springframework.data.redis.connection.jedis.JedisClusterConnection$47.class
org.springframework.data.redis.connection.jedis.JedisConnection$1.class
org.springframework.data.redis.connection.jedis.JedisConverters$2.class
org.springframework.data.redis.connection.jedis.JedisConnectionFactory.class
org.springframework.data.redis.connection.jedis.JedisClusterConnection$59.class
org.springframework.data.redis.connection.jedis.JedisClusterConnection$21.class
org.springframework.data.redis.connection.jedis.JedisClusterConnection$64.class
org.springframework.data.redis.connection.jedis.JedisClusterConnection$40.class
org.springframework.data.redis.connection.jedis.JedisClusterConnection$38.class
org.springframework.data.redis.connection.jedis.JedisClusterConnection$42.class
org.springframework.data.redis.connection.jedis.JedisConverters$3.class
org.springframework.data.redis.connection.jedis.JedisClusterConnection$18.class
org.springframework.data.redis.connection.jedis.JedisClusterConnection$JedisMultiKeyClusterCommandCallback.class
org.springframework.data.redis.connection.jedis.JedisConnection$JedisResult.class
org.springframework.data.redis.connection.jedis.JedisClusterConnection$57.class
org.springframework.data.redis.connection.jedis.JedisUtils.class
org.springframework.data.redis.connection.jedis.JedisClusterConnection$10.class
org.springframework.data.redis.connection.jedis.JedisClusterConnection$33.class
org.springframework.data.redis.connection.jedis.JedisClusterConnection$17.class
org.springframework.data.redis.connection.jedis.JedisClusterConnection$52.class
org.springframework.data.redis.connection.jedis.JedisClusterConnection$15.class
org.springframework.data.redis.connection.jedis.JedisClusterConnection$50.class
org.springframework.data.redis.connection.jedis.JedisConverters$GeoResultConverterFactory$GeoResultConverter.class
org.springframework.data.redis.connection.jedis.JedisClusterConnection$28.class
org.springframework.data.redis.connection.jedis.JedisConverters$GeoResultsConverterFactory$GeoResultsConverter.class
org.springframework.data.redis.connection.jedis.JedisScriptReturnConverter.class
org.springframework.data.redis.connection.jedis.JedisClusterConnection$49.class
org.springframework.data.redis.connection.jedis.JedisClusterConnection$JedisClusterTopologyProvider.class
org.springframework.data.redis.connection.jedis.JedisClusterConnection$31.class
org.springframework.data.redis.connection.jedis.JedisClusterConnection$4.class
org.springframework.data.redis.connection.jedis.JedisVersionUtil.class
org.springframework.data.redis.connection.jedis.JedisClusterConnection$35.class
org.springframework.data.redis.connection.jedis.JedisConverters$8.class
org.springframework.data.redis.connection.jedis.JedisClusterConnection$11.class
org.springframework.data.redis.connection.jedis.JedisClusterConnection$54.class
org.springframework.data.redis.connection.RedisServer$INFO.class
org.springframework.data.redis.connection.srp.SrpScriptReturnConverter.class
org.springframework.data.redis.connection.srp.SrpConverters$4.class
org.springframework.data.redis.connection.srp.SrpConnection.class
org.springframework.data.redis.connection.SortParameters$Range.class
org.springframework.data.redis.hash.ObjectHashMapper$NoOpReferenceResolver.class
org/springframework/data/redis/config/spring-redis.gif
org.springframework.data.redis.support.atomic.RedisAtomicInteger.class
org.springframework.data.redis.support.collections.RedisSet.class
org.springframework.data.redis.support.collections.RedisProperties.class
org.springframework.data.redis.support.collections.RedisCollectionFactoryBean$CollectionType$5.class
META-INF/spring.tooling
META-INF/spring.factories
META-INF/maven/org.springframework.data/spring-data-redis/pom.properties
org.springframework.data.redis.repository.cdi.RedisKeyValueAdapterBean.class
org.springframework.data.redis.repository.query.RedisOperationChain.class
org.springframework.data.redis.serializer.JacksonJsonRedisSerializer.class
org.springframework.data.redis.serializer.SerializationUtils.class
org.springframework.data.redis.listener.RedisMessageListenerContainer$SubscriptionTask.class
org.springframework.data.redis.listener.RedisMessageListenerContainer.class
org.springframework.data.redis.listener.RedisMessageListenerContainer$SpinBarrier.class
org.springframework.data.redis.core.mapping.RedisMappingContext$ClassNameKeySpaceResolver.class
org.springframework.data.redis.core.mapping.RedisMappingContext$ConfigAwareTimeToLiveAccessor.class
org.springframework.data.redis.core.HyperLogLogOperations.class
org.springframework.data.redis.core.RedisTemplate.class
org.springframework.data.redis.core.IndexWriter.class
org.springframework.data.redis.core.RedisKeyValueAdapter.class
org.springframework.data.redis.core.RedisTemplate$18.class
org.springframework.data.redis.core.DefaultListOperations$12.class
org.springframework.data.redis.core.ScanOptions.class
org.springframework.data.redis.core.DefaultClusterOperations$6.class
org.springframework.data.redis.core.DefaultGeoOperations$9.class
org.springframework.data.redis.core.PartialUpdate$UpdateCommand.class
org.springframework.data.redis.core.DefaultClusterOperations$2.class
org.springframework.data.redis.core.DefaultListOperations$8.class
org.springframework.data.redis.core.script.ScriptingException.class
org.springframework.data.redis.core.DefaultListOperations$20.class
org.springframework.data.redis.core.RedisTemplate$9.class
org.springframework.data.redis.core.DefaultSetOperations$17.class
org.springframework.data.redis.core.ZSetOperationsEditor.class
org.springframework.data.redis.core.DefaultHyperLogLogOperations.class
org.springframework.data.redis.core.DefaultZSetOperations$14.class
org.springframework.data.redis.core.DefaultSetOperations$13.class
org.springframework.data.redis.core.index.RedisIndexDefinition$PathCondition.class
org.springframework.data.redis.core.index.IndexDefinitionRegistry.class
org.springframework.data.redis.core.index.GeoIndexDefinition$PointValueTransformer.class
org.springframework.data.redis.core.index.RedisIndexDefinition$LowercaseIndexValueTransformer.class
org.springframework.data.redis.core.DefaultListOperations$19.class
org.springframework.data.redis.core.BoundSetOperations.class
org.springframework.data.redis.core.DefaultValueOperations$10.class
org.springframework.data.redis.core.DefaultZSetOperations.class
org.springframework.data.redis.core.DefaultHashOperations$6.class
org.springframework.data.redis.core.Cursor.class
org.springframework.data.redis.core.DefaultZSetOperations$13.class
org.springframework.data.redis.core.query.SortCriterion.class
org.springframework.data.redis.core.RedisTemplate$10.class
org.springframework.data.redis.core.DefaultGeoOperations$4.class
org.springframework.data.redis.core.convert.ReferenceResolver.class
org.springframework.data.redis.core.convert.CustomConversions$3.class
org.springframework.data.redis.core.convert.Jsr310Converters$BytesToLocalDateTimeConverter.class
org.springframework.data.redis.core.convert.Jsr310Converters$DurationToBytesConverter.class
org.springframework.data.redis.core.convert.IndexedDataFactoryProvider.class
org.springframework.data.redis.core.convert.BinaryConverters$StringBasedConverter.class
org.springframework.data.redis.core.convert.MappingRedisConverter$NaturalOrderingKeyComparator.class
org.springframework.data.redis.core.convert.RemoveIndexedData.class
org.springframework.data.redis.core.convert.IndexResolver.class
org.springframework.data.redis.cache.RedisCache$StoreTranslatingCallable.class
org.springframework.data.redis.cache.RedisCache$BinaryRedisCacheElement.class
org.springframework.data.redis.cache.RedisCache$2.class
org.springframework.data.redis.cache.RedisCache$RedisWriteThroughCallback.class
org.springframework.data.redis.cache.RedisCacheManager$1.class
org.springframework.data.redis.cache.RedisCache$RedisCacheMetadata.class
org.springframework.data.redis.connection.ClusterCommandExecutor$1.class
org.springframework.data.redis.connection.lettuce.LettuceConverters$19.class
org.springframework.data.redis.connection.lettuce.LettuceClusterConnection$26.class
org.springframework.data.redis.connection.lettuce.LettuceClusterConnection$38.class
org.springframework.data.redis.connection.lettuce.LettuceClusterConnection$25.class
org.springframework.data.redis.connection.lettuce.LettuceConverters$1.class
org.springframework.data.redis.connection.lettuce.LettuceClusterConnection$29.class
org.springframework.data.redis.connection.lettuce.LettuceConnection$4.class
org.springframework.data.redis.connection.lettuce.LettuceClusterConnection$28.class
org.springframework.data.redis.connection.lettuce.LettuceConnection.class
org.springframework.data.redis.connection.RedisConnection.class
org.springframework.data.redis.connection.ClusterCommandExecutor.class
org.springframework.data.redis.connection.RedisZSetCommands$Range.class
org.springframework.data.redis.connection.RedisSubscribedConnectionException.class
org.springframework.data.redis.connection.jedis.JedisClusterConnection$43.class
org.springframework.data.redis.connection.jedis.JedisClusterConnection$39.class
org.springframework.data.redis.connection.jedis.JedisClusterConnection$61.class
org.springframework.data.redis.connection.jedis.JedisClusterConnection$24.class
org.springframework.data.redis.connection.jedis.JedisClusterConnection$23.class
org.springframework.data.redis.connection.jedis.JedisSubscription.class
org.springframework.data.redis.connection.jedis.JedisClusterConnection$51.class
org.springframework.data.redis.connection.jedis.JedisClusterConnection$16.class
org.springframework.data.redis.connection.jedis.JedisClusterConnection$56.class
org.springframework.data.redis.connection.RedisKeyCommands.class
org.springframework.data.redis.connection.srp.SrpConnection$SrpResult.class
org.springframework.data.redis.connection.srp.SrpConverters$10.class
org.springframework.data.redis.connection.srp.SrpConverters$6.class
org.springframework.data.redis.connection.srp.SrpConverters$1.class
org.springframework.data.redis.connection.srp.SrpConverters$11.class
org.springframework.data.redis.connection.srp.SrpConnection$SrpTxResult.class
org.springframework.data.redis.connection.DefaultStringRedisConnection.class
org.springframework.data.redis.config.RedisNamespaceHandler.class
org.springframework.data.redis.TooManyClusterRedirectionsException.class
org.springframework.data.redis.support.atomic.RedisAtomicDouble$1.class
org.springframework.data.redis.support.collections.DefaultRedisSet.class
org.springframework.data.redis.support.collections.CollectionUtils.class
org.springframework.data.redis.support.collections.RedisStore.class
org.springframework.data.redis.support.collections.AbstractRedisCollection.class
org.springframework.data.redis.RedisConnectionFailureException.class
notice.txt
org.springframework.data.redis.repository.cdi.CdiBean.class
org.springframework.data.redis.repository.query.RedisQueryCreator.class
org.springframework.data.redis.serializer.RedisSerializer.class
org.springframework.data.redis.listener.RedisMessageListenerContainer$Condition.class
org.springframework.data.redis.listener.PatternTopic.class
org.springframework.data.redis.core.DefaultClusterOperations$7.class
org.springframework.data.redis.core.RedisOperations.class
org.springframework.data.redis.core.mapping.RedisMappingContext.class
org.springframework.data.redis.core.types.RedisClientInfo$RedisClientInfoBuilder.class
org.springframework.data.redis.core.DefaultClusterOperations$1.class
org.springframework.data.redis.core.DefaultTypedTuple.class
org.springframework.data.redis.core.GeoOperationsEditor.class
org.springframework.data.redis.core.RedisKeyValueAdapter$6.class
org.springframework.data.redis.core.DefaultGeoOperations$10.class
org.springframework.data.redis.core.RedisTemplate$20.class
org.springframework.data.redis.core.RedisQueryEngine.class
org.springframework.data.redis.core.DefaultBoundZSetOperations.class
org.springframework.data.redis.core.DefaultHyperLogLogOperations$2.class
org.springframework.data.redis.core.DefaultSetOperations$9.class
org.springframework.data.redis.core.RedisKeyValueAdapter$5.class
org.springframework.data.redis.core.script.RedisScript.class
org.springframework.data.redis.core.DefaultValueOperations$13.class
org.springframework.data.redis.core.DefaultListOperations.class
org.springframework.data.redis.core.DefaultSetOperations$5.class
org.springframework.data.redis.core.PartialUpdate.class
org.springframework.data.redis.core.DefaultListOperations$22.class
org.springframework.data.redis.core.BoundValueOperations.class
org.springframework.data.redis.core.DefaultListOperations$2.class
org.springframework.data.redis.core.RedisConnectionUtils$1.class
org.springframework.data.redis.core.ListOperationsEditor.class
org.springframework.data.redis.core.DefaultZSetOperations$29.class
org.springframework.data.redis.core.DefaultValueOperations.class
org.springframework.data.redis.core.DefaultZSetOperations$16.class
org.springframework.data.redis.core.RedisKeyValueAdapter$MappingExpirationListener.class
org.springframework.data.redis.core.index.SimpleIndexDefinition.class
org.springframework.data.redis.core.index.Indexed.class
org.springframework.data.redis.core.ScanIteration.class
org.springframework.data.redis.core.DefaultValueOperations$4.class
org.springframework.data.redis.core.RedisTemplate$14.class
org.springframework.data.redis.core.RedisKeyValueAdapter$MappingExpirationListener$2.class
org.springframework.data.redis.core.query.DefaultSortCriterion.class
org.springframework.data.redis.core.DefaultValueOperations$2.class
org.springframework.data.redis.core.HashOperations.class
org.springframework.data.redis.core.DefaultClusterOperations.class
org.springframework.data.redis.core.convert.MappingRedisConverter$1.class
org.springframework.data.redis.core.convert.Jsr310Converters$BytesToZonedDateTimeConverter.class
org.springframework.data.redis.core.convert.Jsr310Converters$ZonedDateTimeToBytesConverter.class
org.springframework.data.redis.core.convert.ReferenceResolverImpl.class
org.springframework.data.redis.core.convert.Jsr310Converters$PeriodToBytesConverter.class
org.springframework.data.redis.core.convert.CustomConversions.class
org.springframework.data.redis.core.DefaultZSetOperations$28.class
org.springframework.data.redis.core.DefaultHashOperations$13.class
org.springframework.data.redis.cache.RedisCache.class
org.springframework.data.redis.connection.PoolConfig.class
org.springframework.data.redis.connection.RedisGeoCommands$GeoLocation.class
org.springframework.data.redis.connection.lettuce.LettuceConnection$LettuceTxStatusResult.class
org.springframework.data.redis.connection.lettuce.LettuceConnection$LettuceEvalResultsConverter.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
依赖Jar: |
commons-pool2-${pool}.jar
/org.apache.commons/commons-pool2/${pool}
查看commons-pool2所有版本文件
guava-${guava}.jar
/com.google.guava/guava/${guava}
查看guava所有版本文件
|