组织ID: |
org.springframework.data |
项目ID: |
spring-data-gemfire |
版本: |
1.8.10.RELEASE |
最后修改时间: |
2018-07-27 19:05:34 |
包类型: |
jar |
标题: |
Spring Data Gemfire |
大小: |
687.12KB |
|
Maven引入代码: |
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-gemfire</artifactId>
<version>1.8.10.RELEASE</version>
</dependency>
|
Gradle引入代码: |
org.springframework.data:spring-data-gemfire:1.8.10.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>
<parent>
<groupId>org.springframework.data.build</groupId>
<artifactId>spring-data-parent</artifactId>
<version>1.8.10.RELEASE</version>
</parent>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-gemfire</artifactId>
<version>1.8.10.RELEASE</version>
<name>Spring Data Gemfire</name>
<properties>
<dist.key>SGF</dist.key>
<antlr.version>2.7.7</antlr.version>
<assertj.version>3.5.2</assertj.version>
<gemfire.version>8.2.0</gemfire.version>
<multithreadedtc.version>1.01</multithreadedtc.version>
<servlet-api.version>2.5</servlet-api.version>
<springdata.commons>1.12.10.RELEASE</springdata.commons>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context-support</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-commons</artifactId>
<version>${springdata.commons}</version>
</dependency>
<dependency>
<groupId>javax.enterprise</groupId>
<artifactId>cdi-api</artifactId>
<version>${cdi}</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.gemstone.gemfire</groupId>
<artifactId>gemfire</artifactId>
<version>${gemfire.version}</version>
</dependency>
<dependency>
<groupId>antlr</groupId>
<artifactId>antlr</artifactId>
<version>${antlr.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>annotations</artifactId>
<version>2.0.2</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
<version>${aspectj}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>${jackson}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson}</version>
</dependency>
<!-- Logging -->
<!-- Slf4j JCL bridge redeclared to be available in compile scope -->
<!-- TODO Remove -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
<version>${slf4j}</version>
</dependency>
<!-- Test -->
<dependency>
<groupId>javax.el</groupId>
<artifactId>el-api</artifactId>
<version>${cdi}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>${servlet-api.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>${assertj.version}</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>org.apache.derby</groupId>
<artifactId>derbyLocale_zh_TW</artifactId>
<version>10.9.1.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>edu.umd.cs.mtc</groupId>
<artifactId>multithreadedtc</artifactId>
<version>${multithreadedtc.version}</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>
<configuration>
<attributes>
<basedocdir>${project.basedir}/src/main/asciidoc</basedocdir>
<doctype>book</doctype>
<version>${project.version}</version>
<!-- TODO include other attributes from build.gradle! -->
</attributes>
</configuration>
</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
changelog.txt
license.txt
META-INF/services/javax.enterprise.inject.spi.Extension
META-INF/spring.handlers
META-INF/spring.schemas
META-INF/spring.tooling
notice.txt
org.springframework.data.gemfire.CacheFactoryBean$DynamicRegionSupport.class
org.springframework.data.gemfire.CacheFactoryBean$JndiDataSource.class
org.springframework.data.gemfire.CacheFactoryBean.class
org.springframework.data.gemfire.client.ClientCacheFactoryBean.class
org.springframework.data.gemfire.client.ClientRegionFactoryBean.class
org.springframework.data.gemfire.client.GemfireDataSourcePostProcessor.class
org.springframework.data.gemfire.client.Interest.class
org.springframework.data.gemfire.client.InterestResultPolicyConverter.class
org.springframework.data.gemfire.client.InterestResultPolicyType.class
org.springframework.data.gemfire.client.PoolAdapter.class
org.springframework.data.gemfire.client.PoolFactoryBean$1.class
org.springframework.data.gemfire.client.PoolFactoryBean.class
org.springframework.data.gemfire.client.RegexInterest.class
org.springframework.data.gemfire.client.support.DefaultableDelegatingPoolAdapter$1.class
org.springframework.data.gemfire.client.support.DefaultableDelegatingPoolAdapter$10.class
org.springframework.data.gemfire.client.support.DefaultableDelegatingPoolAdapter$11.class
org.springframework.data.gemfire.client.support.DefaultableDelegatingPoolAdapter$12.class
org.springframework.data.gemfire.client.support.DefaultableDelegatingPoolAdapter$13.class
org.springframework.data.gemfire.client.support.DefaultableDelegatingPoolAdapter$14.class
org.springframework.data.gemfire.client.support.DefaultableDelegatingPoolAdapter$15.class
org.springframework.data.gemfire.client.support.DefaultableDelegatingPoolAdapter$16.class
org.springframework.data.gemfire.client.support.DefaultableDelegatingPoolAdapter$17.class
org.springframework.data.gemfire.client.support.DefaultableDelegatingPoolAdapter$18.class
org.springframework.data.gemfire.client.support.DefaultableDelegatingPoolAdapter$19.class
org.springframework.data.gemfire.client.support.DefaultableDelegatingPoolAdapter$2.class
org.springframework.data.gemfire.client.support.DefaultableDelegatingPoolAdapter$20.class
org.springframework.data.gemfire.client.support.DefaultableDelegatingPoolAdapter$21.class
org.springframework.data.gemfire.client.support.DefaultableDelegatingPoolAdapter$22.class
org.springframework.data.gemfire.client.support.DefaultableDelegatingPoolAdapter$3.class
org.springframework.data.gemfire.client.support.DefaultableDelegatingPoolAdapter$4.class
org.springframework.data.gemfire.client.support.DefaultableDelegatingPoolAdapter$5.class
org.springframework.data.gemfire.client.support.DefaultableDelegatingPoolAdapter$6.class
org.springframework.data.gemfire.client.support.DefaultableDelegatingPoolAdapter$7.class
org.springframework.data.gemfire.client.support.DefaultableDelegatingPoolAdapter$8.class
org.springframework.data.gemfire.client.support.DefaultableDelegatingPoolAdapter$9.class
org.springframework.data.gemfire.client.support.DefaultableDelegatingPoolAdapter$Preference.class
org.springframework.data.gemfire.client.support.DefaultableDelegatingPoolAdapter$ValueProvider.class
org.springframework.data.gemfire.client.support.DefaultableDelegatingPoolAdapter.class
org.springframework.data.gemfire.client.support.DelegatingPoolAdapter$1.class
org.springframework.data.gemfire.client.support.DelegatingPoolAdapter.class
org.springframework.data.gemfire.client.support.FactoryDefaultsPoolAdapter.class
org.springframework.data.gemfire.ClientRegionShortcutConverter.class
org.springframework.data.gemfire.config.AbstractRegionParser.class
org.springframework.data.gemfire.config.AnnotationDrivenBeanDefinitionParser.class
org.springframework.data.gemfire.config.AsyncEventQueueParser.class
org.springframework.data.gemfire.config.AutoRegionLookupBeanDefinitionParser.class
org.springframework.data.gemfire.config.AutoRegionLookupBeanPostProcessor.class
org.springframework.data.gemfire.config.CacheParser.class
org.springframework.data.gemfire.config.CacheServerParser.class
org.springframework.data.gemfire.config.ClientCacheParser.class
org.springframework.data.gemfire.config.ClientRegionAndPoolBeanFactoryPostProcessor.class
org.springframework.data.gemfire.config.ClientRegionParser.class
org.springframework.data.gemfire.config.CreateDefinedIndexesApplicationListener.class
org.springframework.data.gemfire.config.CustomEditorRegisteringBeanFactoryPostProcessor$ConnectionEndpointArrayToIterableConverter.class
org.springframework.data.gemfire.config.CustomEditorRegisteringBeanFactoryPostProcessor.class
org.springframework.data.gemfire.config.DiskStoreBeanPostProcessor.class
org.springframework.data.gemfire.config.DiskStoreParser.class
org.springframework.data.gemfire.config.DiskWriteAttributesFactoryBean.class
org.springframework.data.gemfire.config.FunctionServiceParser.class
org.springframework.data.gemfire.config.GatewayHubParser.class
org.springframework.data.gemfire.config.GatewayReceiverParser.class
org.springframework.data.gemfire.config.GatewaySenderParser.class
org.springframework.data.gemfire.config.GemfireConstants.class
org.springframework.data.gemfire.config.GemfireDataNamespaceHandler.class
org.springframework.data.gemfire.config.GemfireDataSourceParser.class
org.springframework.data.gemfire.config.GemfireListenerContainerParser.class
org.springframework.data.gemfire.config.GemfireNamespaceHandler.class
org.springframework.data.gemfire.config.GemfireRegionAutoProxyParser.class
org.springframework.data.gemfire.config.IndexParser.class
org.springframework.data.gemfire.config.LocalRegionParser.class
org.springframework.data.gemfire.config.LookupRegionParser.class
org.springframework.data.gemfire.config.ParsingUtils.class
org.springframework.data.gemfire.config.PartitionedRegionParser.class
org.springframework.data.gemfire.config.PdxDiskStoreAwareBeanFactoryPostProcessor.class
org.springframework.data.gemfire.config.PoolParser.class
org.springframework.data.gemfire.config.ReplicatedRegionParser.class
org.springframework.data.gemfire.config.SnapshotServiceParser.class
org/springframework/data/gemfire/config/spring-data-gemfire-1.2.xsd
org/springframework/data/gemfire/config/spring-data-gemfire-1.3.xsd
org/springframework/data/gemfire/config/spring-data-gemfire-1.4.xsd
org/springframework/data/gemfire/config/spring-data-gemfire-1.5.xsd
org/springframework/data/gemfire/config/spring-data-gemfire-1.6.xsd
org/springframework/data/gemfire/config/spring-data-gemfire-1.7.xsd
org/springframework/data/gemfire/config/spring-data-gemfire-1.8.xsd
org/springframework/data/gemfire/config/spring-gemfire-1.0.xsd
org/springframework/data/gemfire/config/spring-gemfire-1.1.xsd
org/springframework/data/gemfire/config/spring-gemfire-1.2.xsd
org/springframework/data/gemfire/config/spring-gemfire-1.3.xsd
org/springframework/data/gemfire/config/spring-gemfire-1.4.xsd
org/springframework/data/gemfire/config/spring-gemfire-1.5.xsd
org/springframework/data/gemfire/config/spring-gemfire-1.6.xsd
org/springframework/data/gemfire/config/spring-gemfire-1.7.xsd
org/springframework/data/gemfire/config/spring-gemfire-1.8.xsd
org/springframework/data/gemfire/config/spring-gemfire.gif
org.springframework.data.gemfire.config.TemplateRegionParser.class
org.springframework.data.gemfire.config.TransactionManagerParser.class
org.springframework.data.gemfire.DataPolicyConverter$1.class
org.springframework.data.gemfire.DataPolicyConverter$Policy.class
org.springframework.data.gemfire.DataPolicyConverter.class
org.springframework.data.gemfire.DeclarableSupport.class
org.springframework.data.gemfire.DiskStoreFactoryBean$DiskDir.class
org.springframework.data.gemfire.DiskStoreFactoryBean.class
org.springframework.data.gemfire.EvictionActionConverter.class
org.springframework.data.gemfire.EvictionActionType.class
org.springframework.data.gemfire.EvictionAttributesFactoryBean$1.class
org.springframework.data.gemfire.EvictionAttributesFactoryBean.class
org.springframework.data.gemfire.EvictionPolicyConverter.class
org.springframework.data.gemfire.EvictionPolicyType.class
org.springframework.data.gemfire.ExpirationActionConverter.class
org.springframework.data.gemfire.ExpirationActionType.class
org.springframework.data.gemfire.ExpirationAttributesFactoryBean.class
org.springframework.data.gemfire.FixedPartitionAttributesFactoryBean.class
org.springframework.data.gemfire.function.annotation.Filter.class
org.springframework.data.gemfire.function.annotation.FunctionId.class
org.springframework.data.gemfire.function.annotation.GemfireFunction.class
org.springframework.data.gemfire.function.annotation.OnMember.class
org.springframework.data.gemfire.function.annotation.OnMembers.class
org.springframework.data.gemfire.function.annotation.OnRegion.class
org.springframework.data.gemfire.function.annotation.OnServer.class
org.springframework.data.gemfire.function.annotation.OnServers.class
org.springframework.data.gemfire.function.annotation.RegionData.class
org.springframework.data.gemfire.function.BatchingResultSender.class
org.springframework.data.gemfire.function.config.AbstractFunctionExecutionBeanDefinitionBuilder.class
org.springframework.data.gemfire.function.config.AbstractFunctionExecutionConfigurationSource.class
org.springframework.data.gemfire.function.config.AnnotationFunctionExecutionConfigurationSource$1.class
org.springframework.data.gemfire.function.config.AnnotationFunctionExecutionConfigurationSource.class
org.springframework.data.gemfire.function.config.EnableGemfireFunctionExecutions.class
org.springframework.data.gemfire.function.config.EnableGemfireFunctions.class
org.springframework.data.gemfire.function.config.FunctionExecutionBeanDefinitionBuilderFactory.class
org.springframework.data.gemfire.function.config.FunctionExecutionBeanDefinitionParser.class
org.springframework.data.gemfire.function.config.FunctionExecutionBeanDefinitionRegistrar.class
org.springframework.data.gemfire.function.config.FunctionExecutionComponentProvider$AllTypeFilter.class
org.springframework.data.gemfire.function.config.FunctionExecutionComponentProvider$AnnotationTypeFilter.class
org.springframework.data.gemfire.function.config.FunctionExecutionComponentProvider.class
org.springframework.data.gemfire.function.config.FunctionExecutionConfiguration.class
org.springframework.data.gemfire.function.config.FunctionExecutionConfigurationSource.class
org.springframework.data.gemfire.function.config.GemfireFunctionBeanPostProcessor.class
org.springframework.data.gemfire.function.config.GemfireFunctionPostBeanProcessorRegistrar.class
org.springframework.data.gemfire.function.config.MemberBasedExecutionBeanDefinitionBuilder.class
org.springframework.data.gemfire.function.config.OnMemberExecutionBeanDefinitionBuilder.class
org.springframework.data.gemfire.function.config.OnMembersExecutionBeanDefinitionBuilder.class
org.springframework.data.gemfire.function.config.OnRegionExecutionBeanDefinitionBuilder.class
org.springframework.data.gemfire.function.config.OnServerExecutionBeanDefinitionBuilder.class
org.springframework.data.gemfire.function.config.OnServersExecutionBeanDefinitionBuilder.class
org.springframework.data.gemfire.function.config.ServerBasedExecutionBeanDefinitionBuilder.class
org.springframework.data.gemfire.function.config.TypeFilterParser$1.class
org.springframework.data.gemfire.function.config.TypeFilterParser$FilterType$1.class
org.springframework.data.gemfire.function.config.TypeFilterParser$FilterType$2.class
org.springframework.data.gemfire.function.config.TypeFilterParser$FilterType$3.class
org.springframework.data.gemfire.function.config.TypeFilterParser$FilterType$4.class
org.springframework.data.gemfire.function.config.TypeFilterParser$FilterType$5.class
org.springframework.data.gemfire.function.config.TypeFilterParser$FilterType.class
org.springframework.data.gemfire.function.config.TypeFilterParser$Type.class
org.springframework.data.gemfire.function.config.TypeFilterParser.class
org.springframework.data.gemfire.function.config.XmlFunctionExecutionConfigurationSource.class
org.springframework.data.gemfire.function.DefaultFunctionArgumentResolver.class
org.springframework.data.gemfire.function.execution.AbstractFunctionExecution.class
org.springframework.data.gemfire.function.execution.AbstractFunctionTemplate.class
org.springframework.data.gemfire.function.execution.AllMembersFunctionExecution.class
org.springframework.data.gemfire.function.execution.DefaultFunctionExecutionMethodMetadata.class
org.springframework.data.gemfire.function.execution.DefaultMemberFunctionExecution.class
org.springframework.data.gemfire.function.execution.DistributedMemberFunctionExecution.class
org.springframework.data.gemfire.function.execution.DistributedMembersFunctionExecution.class
org.springframework.data.gemfire.function.execution.FunctionExecutionMethodMetadata$1.class
org.springframework.data.gemfire.function.execution.FunctionExecutionMethodMetadata.class
org.springframework.data.gemfire.function.execution.GemfireFunctionCallback.class
org.springframework.data.gemfire.function.execution.GemfireFunctionOperations.class
org.springframework.data.gemfire.function.execution.GemfireFunctionProxyFactoryBean.class
org.springframework.data.gemfire.function.execution.GemfireOnMemberFunctionTemplate.class
org.springframework.data.gemfire.function.execution.GemfireOnMembersFunctionTemplate.class
org.springframework.data.gemfire.function.execution.GemfireOnRegionFunctionTemplate.class
org.springframework.data.gemfire.function.execution.GemfireOnRegionOperations.class
org.springframework.data.gemfire.function.execution.GemfireOnServerFunctionTemplate.class
org.springframework.data.gemfire.function.execution.GemfireOnServersFunctionTemplate.class
org.springframework.data.gemfire.function.execution.GroupMemberFunctionExecution.class
org.springframework.data.gemfire.function.execution.GroupMembersFunctionExecution.class
org.springframework.data.gemfire.function.execution.MethodMetadata.class
org.springframework.data.gemfire.function.execution.OnRegionExecutionMethodMetadata.class
org.springframework.data.gemfire.function.execution.OnRegionFunctionProxyFactoryBean.class
org.springframework.data.gemfire.function.execution.OnRegionMethodMetadata.class
org.springframework.data.gemfire.function.execution.PoolServerFunctionExecution.class
org.springframework.data.gemfire.function.execution.PoolServersFunctionExecution.class
org.springframework.data.gemfire.function.execution.RegionFunctionExecution.class
org.springframework.data.gemfire.function.execution.ServerFunctionExecution.class
org.springframework.data.gemfire.function.execution.ServersFunctionExecution.class
org.springframework.data.gemfire.function.FunctionArgumentResolver.class
org.springframework.data.gemfire.function.FunctionContextInjectingArgumentResolver.class
org.springframework.data.gemfire.function.GemfireFunctionUtils.class
org.springframework.data.gemfire.function.PdxFunctionArgumentResolver.class
org.springframework.data.gemfire.function.PojoFunctionWrapper.class
org.springframework.data.gemfire.FunctionServiceFactoryBean.class
org.springframework.data.gemfire.GemfireAccessor.class
org.springframework.data.gemfire.GemfireBeanFactoryLocator$SimpleBeanFactoryReference.class
org.springframework.data.gemfire.GemfireBeanFactoryLocator.class
org.springframework.data.gemfire.GemfireCacheUtils.class
org.springframework.data.gemfire.GemfireCallback.class
org.springframework.data.gemfire.GemfireCancellationException.class
org.springframework.data.gemfire.GemfireIndexException.class
org.springframework.data.gemfire.GemfireOperations.class
org.springframework.data.gemfire.GemfireQueryException.class
org.springframework.data.gemfire.GemfireSystemException.class
org.springframework.data.gemfire.GemfireTemplate$RegionCloseSuppressingInvocationHandler.class
org.springframework.data.gemfire.GemfireTemplate.class
org.springframework.data.gemfire.GemfireTransactionCommitException.class
org.springframework.data.gemfire.GemfireTransactionManager$1.class
org.springframework.data.gemfire.GemfireTransactionManager$CacheHolder.class
org.springframework.data.gemfire.GemfireTransactionManager$CacheTransactionObject.class
org.springframework.data.gemfire.GemfireTransactionManager.class
org.springframework.data.gemfire.GemfireUtils.class
org.springframework.data.gemfire.GenericRegionFactoryBean.class
org.springframework.data.gemfire.IndexFactoryBean$IndexWrapper.class
org.springframework.data.gemfire.IndexFactoryBean.class
org.springframework.data.gemfire.IndexMaintenancePolicyConverter.class
org.springframework.data.gemfire.IndexMaintenancePolicyType.class
org.springframework.data.gemfire.IndexType.class
org.springframework.data.gemfire.IndexTypeConverter.class
org.springframework.data.gemfire.InterestPolicyConverter.class
org.springframework.data.gemfire.InterestPolicyType.class
org.springframework.data.gemfire.JndiDataSourceType.class
org.springframework.data.gemfire.LazyWiringDeclarableSupport$1.class
org.springframework.data.gemfire.LazyWiringDeclarableSupport.class
org.springframework.data.gemfire.listener.adapter.ContinuousQueryListenerAdapter$MethodInvoker$1.class
org.springframework.data.gemfire.listener.adapter.ContinuousQueryListenerAdapter$MethodInvoker$2.class
org.springframework.data.gemfire.listener.adapter.ContinuousQueryListenerAdapter$MethodInvoker.class
org.springframework.data.gemfire.listener.adapter.ContinuousQueryListenerAdapter.class
org.springframework.data.gemfire.listener.ContinuousQueryDefinition.class
org.springframework.data.gemfire.listener.ContinuousQueryListener.class
org.springframework.data.gemfire.listener.ContinuousQueryListenerContainer$1.class
org.springframework.data.gemfire.listener.ContinuousQueryListenerContainer$EventDispatcherAdapter.class
org.springframework.data.gemfire.listener.ContinuousQueryListenerContainer.class
org.springframework.data.gemfire.listener.GemfireListenerExecutionFailedException.class
org.springframework.data.gemfire.LocalRegionFactoryBean.class
org.springframework.data.gemfire.LookupRegionFactoryBean.class
org.springframework.data.gemfire.mapping.GemfireMappingContext.class
org.springframework.data.gemfire.mapping.GemfirePersistentEntity.class
org.springframework.data.gemfire.mapping.GemfirePersistentProperty.class
org.springframework.data.gemfire.mapping.GemfirePropertyValueProvider.class
org.springframework.data.gemfire.mapping.MappingPdxSerializer$1.class
org.springframework.data.gemfire.mapping.MappingPdxSerializer$2.class
org.springframework.data.gemfire.mapping.MappingPdxSerializer.class
org.springframework.data.gemfire.mapping.model.GemfireSimpleTypeHolder.class
org.springframework.data.gemfire.mapping.PdxReaderPropertyAccessor.class
org.springframework.data.gemfire.mapping.Region.class
org.springframework.data.gemfire.mapping.Regions.class
org.springframework.data.gemfire.PartitionAttributesFactoryBean.class
org.springframework.data.gemfire.PartitionedRegionFactoryBean.class
org.springframework.data.gemfire.RegionAttributesFactoryBean.class
org.springframework.data.gemfire.RegionFactoryBean.class
org.springframework.data.gemfire.RegionLookupFactoryBean.class
org.springframework.data.gemfire.RegionShortcutConverter.class
org.springframework.data.gemfire.ReplicatedRegionFactoryBean.class
org.springframework.data.gemfire.repository.cdi.GemfireRepositoryBean.class
org.springframework.data.gemfire.repository.cdi.GemfireRepositoryExtension.class
org.springframework.data.gemfire.repository.config.EnableGemfireRepositories.class
org.springframework.data.gemfire.repository.config.GemfireRepositoriesRegistrar.class
org.springframework.data.gemfire.repository.config.GemfireRepositoryConfigurationExtension.class
org.springframework.data.gemfire.repository.GemfireRepository.class
org.springframework.data.gemfire.repository.query.annotation.Hint.class
org.springframework.data.gemfire.repository.query.annotation.Import.class
org.springframework.data.gemfire.repository.query.annotation.Limit.class
org.springframework.data.gemfire.repository.query.annotation.Trace.class
org.springframework.data.gemfire.repository.query.DefaultGemfireEntityInformation.class
org.springframework.data.gemfire.repository.query.GemfireEntityInformation.class
org.springframework.data.gemfire.repository.query.GemfireQueryCreator$IndexProvider.class
org.springframework.data.gemfire.repository.query.GemfireQueryCreator.class
org.springframework.data.gemfire.repository.query.GemfireQueryMethod.class
org.springframework.data.gemfire.repository.query.GemfireRepositoryQuery.class
org.springframework.data.gemfire.repository.query.PartTreeGemfireRepositoryQuery$1.class
org.springframework.data.gemfire.repository.query.PartTreeGemfireRepositoryQuery.class
org.springframework.data.gemfire.repository.query.Predicate.class
org.springframework.data.gemfire.repository.query.Predicates$1.class
org.springframework.data.gemfire.repository.query.Predicates$2.class
org.springframework.data.gemfire.repository.query.Predicates$3.class
org.springframework.data.gemfire.repository.query.Predicates$AtomicPredicate.class
org.springframework.data.gemfire.repository.query.Predicates.class
org.springframework.data.gemfire.repository.query.QueryBuilder.class
org.springframework.data.gemfire.repository.query.QueryString.class
org.springframework.data.gemfire.repository.query.StringBasedGemfireRepositoryQuery.class
org.springframework.data.gemfire.repository.query.support.OqlKeyword.class
org.springframework.data.gemfire.repository.Query.class
org.springframework.data.gemfire.repository.support.GemfireRepositoryFactory$1.class
org.springframework.data.gemfire.repository.support.GemfireRepositoryFactory.class
org.springframework.data.gemfire.repository.support.GemfireRepositoryFactoryBean.class
org.springframework.data.gemfire.repository.support.SimpleGemfireRepository$1.class
org.springframework.data.gemfire.repository.support.SimpleGemfireRepository.class
org.springframework.data.gemfire.repository.Wrapper.class
org.springframework.data.gemfire.ScopeConverter.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
依赖Jar: |
spring-data-commons-${springdata.commons}.jar
/org.springframework.data/spring-data-commons/${springdata.commons}
查看spring-data-commons所有版本文件
cdi-api-${cdi}.jar
/javax.enterprise/cdi-api/${cdi}
查看cdi-api所有版本文件
gemfire-${gemfire.version}.jar
/com.gemstone.gemfire/gemfire/${gemfire.version}
查看gemfire所有版本文件
antlr-${antlr.version}.jar
/antlr/antlr/${antlr.version}
查看antlr所有版本文件
annotations-2.0.2.jar
/com.google.code.findbugs/annotations/2.0.2
查看annotations所有版本文件
aspectjweaver-${aspectj}.jar
/org.aspectj/aspectjweaver/${aspectj}
查看aspectjweaver所有版本文件
jackson-annotations-${jackson}.jar
/com.fasterxml.jackson.core/jackson-annotations/${jackson}
查看jackson-annotations所有版本文件
jackson-databind-${jackson}.jar
/com.fasterxml.jackson.core/jackson-databind/${jackson}
查看jackson-databind所有版本文件
jcl-over-slf4j-${slf4j}.jar
/org.slf4j/jcl-over-slf4j/${slf4j}
查看jcl-over-slf4j所有版本文件
el-api-${cdi}.jar
/javax.el/el-api/${cdi}
查看el-api所有版本文件
servlet-api-${servlet-api.version}.jar
/javax.servlet/servlet-api/${servlet-api.version}
查看servlet-api所有版本文件
assertj-core-${assertj.version}.jar
/org.assertj/assertj-core/${assertj.version}
查看assertj-core所有版本文件
cditest-owb-${webbeans}.jar
/org.apache.openwebbeans.test/cditest-owb/${webbeans}
查看cditest-owb所有版本文件
derbyLocale_zh_TW-10.9.1.0.jar
/org.apache.derby/derbyLocale_zh_TW/10.9.1.0
查看derbyLocale_zh_TW所有版本文件
multithreadedtc-${multithreadedtc.version}.jar
/edu.umd.cs.mtc/multithreadedtc/${multithreadedtc.version}
查看multithreadedtc所有版本文件
|