组织ID: |
org.springframework.data |
项目ID: |
spring-data-neo4j |
版本: |
3.4.6.RELEASE |
最后修改时间: |
2018-08-17 14:42:27 |
包类型: |
jar |
标题: |
Spring Data Neo4j |
描述: |
Neo4j support for Spring Data |
大小: |
505.92KB |
|
Maven引入代码: |
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-neo4j</artifactId>
<version>3.4.6.RELEASE</version>
</dependency>
|
Gradle引入代码: |
org.springframework.data:spring-data-neo4j:3.4.6.RELEASE
|
下载Jar包: |
|
POM文件内容: |
<?xml version="1.0" encoding="UTF-8"?>
<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>
<artifactId>spring-data-neo4j</artifactId>
<name>Spring Data Neo4j</name>
<description>Neo4j support for Spring Data</description>
<parent>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-neo4j-parent</artifactId>
<version>3.4.6.RELEASE</version>
<relativePath>../pom.xml</relativePath>
</parent>
<properties>
<validation>1.0.0.GA</validation>
</properties>
<dependencies>
<!-- Spring -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-aspects</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-expression</artifactId>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjrt</artifactId>
<version>${aspectj}</version>
</dependency>
<!-- Spring Data -->
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-commons</artifactId>
<version>${springdata.commons}</version>
</dependency>
<dependency>
<groupId>com.mysema.querydsl</groupId>
<artifactId>querydsl-lucene3</artifactId>
<version>${querydsl}</version>
<optional>true</optional>
<exclusions>
<exclusion>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-core</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.mysema.querydsl</groupId>
<artifactId>querydsl-apt</artifactId>
<version>${querydsl}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>jsr250-api</artifactId>
<version>1.0</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>javax.el</groupId>
<artifactId>el-api</artifactId>
<version>${cdi}</version>
<scope>test</scope>
</dependency>
<!-- CDI -->
<dependency>
<groupId>javax.enterprise</groupId>
<artifactId>cdi-api</artifactId>
<version>${cdi}</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.apache.openwebbeans.test</groupId>
<artifactId>cditest-owb</artifactId>
<version>${webbeans}</version>
<exclusions>
<exclusion>
<groupId>javassist</groupId>
<artifactId>javassist</artifactId>
</exclusion>
</exclusions>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.javassist</groupId>
<artifactId>javassist</artifactId>
<version>3.18.1-GA</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
<scope>test</scope>
</dependency>
<!-- JSR 303 Validation -->
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<version>${validation}</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
<version>4.2.0.Final</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
<version>${jodatime}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-cypher-dsl</artifactId>
<version>${neo4j-cypher-dsl.version}</version>
<exclusions>
<exclusion>
<groupId>org.neo4j</groupId>
<artifactId>neo4j</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-spatial</artifactId>
<version>${neo4j.spatial.version}</version>
<optional>true</optional>
<exclusions>
<exclusion>
<groupId>org.neo4j</groupId>
<artifactId>neo4j</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>server-api</artifactId>
<version>${neo4j.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>commons-configuration</groupId>
<artifactId>commons-configuration</artifactId>
<version>1.6</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
<version>${logback}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.mysema.maven</groupId>
<artifactId>apt-maven-plugin</artifactId>
<version>${apt}</version>
<dependencies>
<dependency>
<groupId>com.mysema.querydsl</groupId>
<artifactId>querydsl-apt</artifactId>
<version>${querydsl}</version>
</dependency>
</dependencies>
<executions>
<execution>
<phase>generate-test-sources</phase>
<goals>
<goal>test-process</goal>
</goals>
<configuration>
<outputDirectory>target/generated-test-sources</outputDirectory>
<processor>org.springframework.data.neo4j.querydsl.SDNAnnotationProcessor</processor>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
META-INF/spring.tooling
META-INF/beans.xml
META-INF/spring.schemas
META-INF/services/javax.enterprise.inject.spi.Extension
META-INF/spring.handlers
org.springframework.data.persistence.StateProvider.class
org.springframework.data.persistence.StateBackedCreator.class
org.springframework.data.neo4j.config.Neo4jAuditingBeanDefinitionParser.class
org.springframework.data.neo4j.config.EnableNeo4jRepositories.class
org.springframework.data.neo4j.config.NullTransactionManager.class
org/springframework/data/neo4j/config/spring-neo4j-2.2.xsd
org/springframework/data/neo4j/config/spring-neo4j-3.0.xsd
org/springframework/data/neo4j/config/spring-neo4j-2.0.xsd
org.springframework.data.neo4j.config.ConfigurationCheck.class
org.springframework.data.neo4j.config.DataGraphNamespaceHandler.class
org.springframework.data.neo4j.config.BasePackageScanner.class
org.springframework.data.neo4j.config.DataGraphBeanDefinitionParser.class
org.springframework.data.neo4j.config.NullTransactionManager$1.class
org.springframework.data.neo4j.config.Neo4jRepositoryConfigurationExtension.class
org.springframework.data.neo4j.config.Neo4jNamespaceHandler.class
org/springframework/data/neo4j/config/spring-neo4j-3.3.xsd
org.springframework.data.neo4j.config.Neo4jRepositoriesRegistrar.class
org/springframework/data/neo4j/config/spring-neo4j-2.1.xsd
org.springframework.data.neo4j.config.Neo4jConfiguration.class
org.springframework.data.neo4j.config.JtaTransactionManagerFactoryBean.class
org.springframework.data.neo4j.support.ParameterCheck.class
org.springframework.data.neo4j.support.Neo4jTemplate$3.class
org.springframework.data.neo4j.support.DelegatingGraphDatabaseGlobalOperations.class
org.springframework.data.neo4j.support.Neo4jTemplate.class
org.springframework.data.neo4j.support.index.IndexType$3.class
org.springframework.data.neo4j.support.index.IndexType.class
org.springframework.data.neo4j.support.index.NoSuchIndexException.class
org.springframework.data.neo4j.support.index.NullReadableIndex.class
org.springframework.data.neo4j.support.index.EmptyIndexHits.class
org.springframework.data.neo4j.support.index.ClosableIndexHits.class
org.springframework.data.neo4j.support.index.IndexType$2.class
org.springframework.data.neo4j.support.index.IndexType$4.class
org.springframework.data.neo4j.support.index.IndexProviderImpl.class
org.springframework.data.neo4j.support.index.IndexType$1.class
org.springframework.data.neo4j.support.index.IndexProvider.class
org.springframework.data.neo4j.support.Neo4jTemplateAware.class
org.springframework.data.neo4j.support.Neo4jTemplate$1.class
org.springframework.data.neo4j.support.Neo4jEmbeddedTransactionManager$1.class
org.springframework.data.neo4j.support.typesafety.TypeSafetyOption.class
org.springframework.data.neo4j.support.typesafety.TypeSafetyPolicy.class
org.springframework.data.neo4j.support.conversion.GenericObjectToObjectConverter.class
org.springframework.data.neo4j.support.conversion.ResultColumnValueExtractor.class
org.springframework.data.neo4j.support.conversion.POJOResultBuildingException.class
org.springframework.data.neo4j.support.conversion.EntityResultConverter.class
org.springframework.data.neo4j.support.conversion.NoSuchColumnFoundException.class
org.springframework.data.neo4j.support.conversion.QueryResultProxy.class
org.springframework.data.neo4j.support.DelegatingGraphDatabase$1.class
org.springframework.data.neo4j.support.relationship.RelationshipEntityInstantiator.class
org.springframework.data.neo4j.support.relationship.RelationshipEntityState.class
org.springframework.data.neo4j.support.relationship.RelationshipEntityStateFactory.class
org.springframework.data.neo4j.support.GraphDatabaseServiceFactoryBean.class
org.springframework.data.neo4j.support.DelegatingGraphDatabase$2.class
org.springframework.data.neo4j.support.GraphDatabaseFactoryBean.class
org.springframework.data.neo4j.support.Neo4jEmbeddedTransactionManager.class
org.springframework.data.neo4j.support.ReferenceNodes.class
org.springframework.data.neo4j.support.path.PathMappingIterator.class
org.springframework.data.neo4j.support.path.IterationController$IterationMode.class
org.springframework.data.neo4j.support.path.PathMappingIterator$2.class
org.springframework.data.neo4j.support.path.ConvertingEntityPath$1.class
org.springframework.data.neo4j.support.path.EntityMapper.class
org.springframework.data.neo4j.support.path.DefaultRelationshipBacked.class
org.springframework.data.neo4j.support.path.RelationshipPath.class
org.springframework.data.neo4j.support.path.IterationController.class
org.springframework.data.neo4j.support.path.ConvertingEntityPath$2.class
org.springframework.data.neo4j.support.path.NodePath.class
org.springframework.data.neo4j.support.path.PathMappingIterator$1.class
org.springframework.data.neo4j.support.path.EntityPathPathIterableWrapper.class
org.springframework.data.neo4j.support.path.ConvertingEntityPath$3.class
org.springframework.data.neo4j.support.path.EntityMapper$WithoutResult.class
org.springframework.data.neo4j.support.path.EntityEvaluator.class
org.springframework.data.neo4j.support.path.PathMapper.class
org.springframework.data.neo4j.support.path.PathMapper$WithoutResult.class
org.springframework.data.neo4j.support.path.ConvertingEntityPath.class
org.springframework.data.neo4j.support.Neo4jTemplate$2.class
org.springframework.data.neo4j.support.mapping.SourceStateTransmitter$1.class
org.springframework.data.neo4j.support.mapping.NoEntityIndexCreator.class
org.springframework.data.neo4j.support.mapping.Neo4jEntityPersister.class
org.springframework.data.neo4j.support.mapping.Neo4jMappingContext.class
org.springframework.data.neo4j.support.mapping.WrappedIterableClosableIterable.class
org.springframework.data.neo4j.support.mapping.Neo4jPersistentEntityImpl.class
org.springframework.data.neo4j.support.mapping.DefaultEntityIndexCreator$1.class
org.springframework.data.neo4j.support.mapping.Neo4jEntityPersister$StackedEntityCache$1.class
org.springframework.data.neo4j.support.mapping.EntityRemover.class
org.springframework.data.neo4j.support.mapping.EntityIndexCreator.class
org.springframework.data.neo4j.support.mapping.DefaultEntityIndexCreator$2.class
org.springframework.data.neo4j.support.mapping.EntityCreatingClosableIterable.class
org.springframework.data.neo4j.support.mapping.EntityStateHandler.class
org.springframework.data.neo4j.support.mapping.AbstractConstructorEntityInstantiator$1.class
org.springframework.data.neo4j.support.mapping.HierarchicalTypeInformationMapper.class
org.springframework.data.neo4j.support.mapping.ClassNameAlias.class
org.springframework.data.neo4j.support.mapping.Neo4jEntityConverterImpl$1.class
org.springframework.data.neo4j.support.mapping.SourceStateTransmitter$2.class
org.springframework.data.neo4j.support.mapping.Neo4jEntityPersister$StackedEntityCache$Entry.class
org.springframework.data.neo4j.support.mapping.Neo4jEntityPersister$CachedInstantiator.class
org.springframework.data.neo4j.support.mapping.AbstractConstructorEntityInstantiator$2.class
org.springframework.data.neo4j.support.mapping.Neo4jEntityFetchHandler.class
org.springframework.data.neo4j.support.mapping.AbstractConstructorEntityInstantiator.class
org.springframework.data.neo4j.support.mapping.StoredEntityType.class
org.springframework.data.neo4j.support.mapping.Neo4jEntityPersister$CachedConverter.class
org.springframework.data.neo4j.support.mapping.SourceStateTransmitter$3.class
org.springframework.data.neo4j.support.mapping.Neo4jPersistentEntityImpl$1.class
org.springframework.data.neo4j.support.mapping.Neo4jEntityPersister$StackedEntityCache.class
org.springframework.data.neo4j.support.mapping.EntityTools.class
org.springframework.data.neo4j.support.mapping.Neo4jEntityConverterImpl.class
org.springframework.data.neo4j.support.mapping.ResourceIterableClosableIterable.class
org.springframework.data.neo4j.support.mapping.AbstractConstructorEntityInstantiator$3.class
org.springframework.data.neo4j.support.mapping.SourceStateTransmitter.class
org.springframework.data.neo4j.support.mapping.SourceStateTransmitter$4.class
org.springframework.data.neo4j.support.mapping.Neo4jPersistentEntityImpl$2.class
org.springframework.data.neo4j.support.mapping.TRSTypeAliasAccessor.class
org.springframework.data.neo4j.support.mapping.AbstractConstructorEntityInstantiator$4.class
org.springframework.data.neo4j.support.mapping.DefaultEntityIndexCreator.class
org.springframework.data.neo4j.support.mapping.EntityAlias.class
org.springframework.data.neo4j.support.mapping.Neo4jPersistentPropertyImpl.class
org.springframework.data.neo4j.support.DelegatingGraphDatabase.class
org.springframework.data.neo4j.support.typerepresentation.TypeRepresentationStrategyFactory$Strategy$2.class
org.springframework.data.neo4j.support.typerepresentation.TypeRepresentationStrategyFactory$Strategy$4.class
org.springframework.data.neo4j.support.typerepresentation.NoopNodeTypeRepresentationStrategy.class
org.springframework.data.neo4j.support.typerepresentation.TypeRepresentationStrategyFactory$Strategy$1.class
org.springframework.data.neo4j.support.typerepresentation.SubReferenceNodeTypeRepresentationStrategy.class
org.springframework.data.neo4j.support.typerepresentation.TypeRepresentationStrategyFactory$Strategy$3.class
org.springframework.data.neo4j.support.typerepresentation.TypeRepresentationStrategyFactory$1.class
org.springframework.data.neo4j.support.typerepresentation.TypeRepresentationStrategyFactory$Strategy.class
org.springframework.data.neo4j.support.typerepresentation.IndexBasedNodeTypeRepresentationStrategy.class
org.springframework.data.neo4j.support.typerepresentation.AbstractIndexBasedTypeRepresentationStrategy.class
org.springframework.data.neo4j.support.typerepresentation.TypeRepresentationStrategies.class
org.springframework.data.neo4j.support.typerepresentation.ClassValueTypeInformationMapper.class
org.springframework.data.neo4j.support.typerepresentation.EntityTypeCache.class
org.springframework.data.neo4j.support.typerepresentation.ClosableCombiningIterable.class
org.springframework.data.neo4j.support.typerepresentation.SingleLabelBasedNodeTypeRepresentationStrategy.class
org.springframework.data.neo4j.support.typerepresentation.LabelBasedNodeTypeRepresentationStrategy.class
org.springframework.data.neo4j.support.typerepresentation.NoopRelationshipTypeRepresentationStrategy.class
org.springframework.data.neo4j.support.typerepresentation.LabelBasedStrategyCypherHelper.class
org.springframework.data.neo4j.support.typerepresentation.SubReferenceNodeTypeRepresentationStrategy$1.class
org.springframework.data.neo4j.support.typerepresentation.TypeRepresentationStrategyFactory.class
org.springframework.data.neo4j.support.typerepresentation.IndexBasedRelationshipTypeRepresentationStrategy.class
org.springframework.data.neo4j.support.Infrastructure.class
org.springframework.data.neo4j.support.GenericTypeExtractor.class
org.springframework.data.neo4j.support.Neo4jExceptionTranslator.class
org.springframework.data.neo4j.support.schema.SchemaIndexProvider.class
org.springframework.data.neo4j.support.node.NodeEntityState.class
org.springframework.data.neo4j.support.node.NodeEntityStateFactory.class
org.springframework.data.neo4j.support.node.NodeEntityInstantiator.class
org.springframework.data.neo4j.support.node.EntityStateFactory.class
org.springframework.data.neo4j.support.MappingInfrastructureFactoryBean.class
org.springframework.data.neo4j.support.MappingInfrastructure.class
org.springframework.data.neo4j.support.DoReturn.class
org.springframework.data.neo4j.support.Neo4jEmbeddedTransactionManager$TxState.class
org.springframework.data.neo4j.support.query.ConversionServiceQueryResultConverter.class
org.springframework.data.neo4j.support.query.CypherQueryEngineImpl.class
org.springframework.data.neo4j.support.query.QueryParameterConverter.class
org.springframework.data.neo4j.support.query.QueryEngine.class
org.springframework.data.neo4j.support.query.CypherQueryEngine.class
org.springframework.data.neo4j.support.query.QueryOperations.class
org.springframework.data.neo4j.support.query.CypherQueryExecutor.class
org.springframework.data.neo4j.support.query.CypherQueryExecutor$1.class
org.springframework.data.neo4j.core.GraphDatabase.class
org.springframework.data.neo4j.core.NodeTypeRepresentationStrategy.class
org.springframework.data.neo4j.core.EntityPath.class
org.springframework.data.neo4j.core.RelationshipTypeRepresentationStrategy.class
org.springframework.data.neo4j.core.TypeRepresentationStrategy.class
org.springframework.data.neo4j.core.FieldTraversalDescriptionBuilder.class
org.springframework.data.neo4j.core.GraphDatabaseGlobalOperations.class
org.springframework.data.neo4j.core.UncategorizedGraphStoreException.class
org.springframework.data.neo4j.core.EntityState.class
org.springframework.data.neo4j.core.UpdateableState.class
org.springframework.data.neo4j.annotation.ResultColumn.class
org.springframework.data.neo4j.annotation.RelatedToVia.class
org.springframework.data.neo4j.annotation.Indexed$Level.class
org.springframework.data.neo4j.annotation.EndNode.class
org.springframework.data.neo4j.annotation.Fetch.class
org.springframework.data.neo4j.annotation.RelatedTo.class
org.springframework.data.neo4j.annotation.Indexed$1.class
org.springframework.data.neo4j.annotation.Query.class
org.springframework.data.neo4j.annotation.Indexed$Name.class
org.springframework.data.neo4j.annotation.StartNode.class
org.springframework.data.neo4j.annotation.MapResult.class
org.springframework.data.neo4j.annotation.GraphTraversal.class
org.springframework.data.neo4j.annotation.RelationshipType.class
org.springframework.data.neo4j.annotation.Indexed.class
org.springframework.data.neo4j.annotation.RelationshipEntity.class
org.springframework.data.neo4j.annotation.GraphProperty.class
org.springframework.data.neo4j.annotation.Labels.class
org.springframework.data.neo4j.annotation.QueryResult.class
org.springframework.data.neo4j.annotation.NodeEntity.class
org.springframework.data.neo4j.annotation.GraphId.class
org.springframework.data.neo4j.lifecycle.AuditingEventListener.class
org.springframework.data.neo4j.lifecycle.BeforeDeleteEvent.class
org.springframework.data.neo4j.lifecycle.AfterDeleteEvent.class
org.springframework.data.neo4j.lifecycle.Neo4jLifecycleEvent.class
org.springframework.data.neo4j.lifecycle.BeforeSaveEvent.class
org.springframework.data.neo4j.lifecycle.DeleteEvent.class
org.springframework.data.neo4j.lifecycle.AfterSaveEvent.class
org.springframework.data.neo4j.conversion.Result.class
org.springframework.data.neo4j.conversion.Handler.class
org.springframework.data.neo4j.conversion.ContainerConverter.class
org.springframework.data.neo4j.conversion.QueryMapResultConverter.class
org.springframework.data.neo4j.conversion.DefaultConverter.class
org.springframework.data.neo4j.conversion.QueryResultBuilder$1.class
org.springframework.data.neo4j.conversion.ResultConverter$ResultConverterAdapter.class
org.springframework.data.neo4j.conversion.QueryResultBuilder.class
org.springframework.data.neo4j.conversion.ResultConverter.class
org.springframework.data.neo4j.repository.LegacyIndexSearcher$3.class
org.springframework.data.neo4j.repository.AbstractGraphRepository$2.class
org.springframework.data.neo4j.repository.TraversalRepository.class
org.springframework.data.neo4j.repository.LegacyIndexSearcher$2.class
org.springframework.data.neo4j.repository.GraphRepositoryFactory$1.class
org.springframework.data.neo4j.repository.RelationshipOperationsRepository.class
org.springframework.data.neo4j.repository.LegacyIndexSearcher$1.class
org.springframework.data.neo4j.repository.GraphEntityInformation.class
org.springframework.data.neo4j.repository.GraphRepositoryFactory.class
org.springframework.data.neo4j.repository.cdi.Neo4jCdiRepositoryExtension.class
org.springframework.data.neo4j.repository.cdi.Neo4jCdiRepositoryBean.class
org.springframework.data.neo4j.repository.LegacyIndexSearcher$IndexHitsWrapper.class
org.springframework.data.neo4j.repository.GraphRepository.class
org.springframework.data.neo4j.repository.SpatialRepository.class
org.springframework.data.neo4j.repository.AbstractGraphRepository$1.class
org.springframework.data.neo4j.repository.NamedIndexRepository.class
org.springframework.data.neo4j.repository.SchemaIndexRepository.class
org.springframework.data.neo4j.repository.GeoConverter.class
org.springframework.data.neo4j.repository.GraphRepositoryFactoryBean.class
org.springframework.data.neo4j.repository.RelationshipGraphRepository.class
org.springframework.data.neo4j.repository.GeoQueries.class
org.springframework.data.neo4j.repository.IndexRepository.class
org.springframework.data.neo4j.repository.CRUDRepository.class
org.springframework.data.neo4j.repository.AbstractGraphRepository$Query.class
org.springframework.data.neo4j.repository.AbstractGraphRepository$2$1.class
org.springframework.data.neo4j.repository.GraphMetamodelEntityInformation.class
org.springframework.data.neo4j.repository.LegacyIndexSearcher.class
org.springframework.data.neo4j.repository.NodeGraphRepositoryImpl.class
org.springframework.data.neo4j.repository.AbstractGraphRepository.class
org.springframework.data.neo4j.repository.CypherDslRepository.class
org.springframework.data.neo4j.repository.query.IndexBasedTypeRestrictingWhereClause.class
org.springframework.data.neo4j.repository.query.StartClause.class
org.springframework.data.neo4j.repository.query.GraphIdStartClause.class
org.springframework.data.neo4j.repository.query.IdPropertyWhereClause.class
org.springframework.data.neo4j.repository.query.WhereClause.class
org.springframework.data.neo4j.repository.query.CypherQueryCreator.class
org.springframework.data.neo4j.repository.query.StartClauseFactory.class
org.springframework.data.neo4j.repository.query.MatchClause.class
org.springframework.data.neo4j.repository.query.GraphRepositoryQuery.class
org.springframework.data.neo4j.repository.query.CypherGraphRepositoryQuery.class
org.springframework.data.neo4j.repository.query.QueryTemplates$1.class
org.springframework.data.neo4j.repository.query.CypherQueryDefinition.class
org.springframework.data.neo4j.repository.query.GraphRepositoryQuery$1.class
org.springframework.data.neo4j.repository.query.RepositoryQueryException.class
org.springframework.data.neo4j.repository.query.CypherQueryBuilder.class
org.springframework.data.neo4j.repository.query.QueryTemplates.class
org.springframework.data.neo4j.repository.query.VariableContext.class
org.springframework.data.neo4j.repository.query.GraphQueryMethod.class
org.springframework.data.neo4j.repository.query.LabelBasedTypeRestrictingWhereClause.class
org.springframework.data.neo4j.repository.query.ParameterResolver.class
org.springframework.data.neo4j.repository.query.DerivedCypherRepositoryQuery.class
org.springframework.data.neo4j.repository.query.IndexBasedStartClause.class
org.springframework.data.neo4j.repository.query.SpatialIndexStartClause.class
org.springframework.data.neo4j.repository.query.ExactIndexBasedStartClause.class
org.springframework.data.neo4j.repository.query.CypherQuery.class
org.springframework.data.neo4j.repository.query.PartInfo.class
org.springframework.data.neo4j.repository.query.FullTextIndexBasedStartClause.class
org.springframework.data.neo4j.mapping.Neo4jPersistentEntity.class
org.springframework.data.neo4j.mapping.EntityPersister.class
org.springframework.data.neo4j.mapping.InvalidEntityTypeException.class
org.springframework.data.neo4j.mapping.ManagedEntity.class
org.springframework.data.neo4j.mapping.MappingPolicy$DefaultMappingPolicy.class
org.springframework.data.neo4j.mapping.Neo4jNodeConverter.class
org.springframework.data.neo4j.mapping.Neo4jEntityConverter.class
org.springframework.data.neo4j.mapping.MappingPolicy$Option.class
org.springframework.data.neo4j.mapping.RelationshipResult$Type.class
org.springframework.data.neo4j.mapping.PersistentEntityConversionException.class
org.springframework.data.neo4j.mapping.Neo4jPersistentProperty.class
org.springframework.data.neo4j.mapping.RelationshipInfo.class
org.springframework.data.neo4j.mapping.EntityInstantiator.class
org.springframework.data.neo4j.mapping.IndexInfo.class
org.springframework.data.neo4j.mapping.RelationshipProperties.class
org.springframework.data.neo4j.mapping.IndexInfo$1.class
org.springframework.data.neo4j.mapping.MappingPolicy.class
org.springframework.data.neo4j.mapping.RelationshipResult.class
org.springframework.data.neo4j.template.Neo4jOperations.class
org.springframework.data.neo4j.template.GraphCallback.class
org.springframework.data.neo4j.template.GraphCallback$WithoutResult.class
org.springframework.data.neo4j.server.SpringPluginInitializer.class
org.springframework.data.neo4j.server.SpringPluginInitializer$SpringBeanInjectable.class
org.springframework.data.neo4j.server.ProvidedClassPathXmlApplicationContext.class
org.springframework.data.neo4j.fieldaccess.ManagedFieldAccessorSet$1.class
org.springframework.data.neo4j.fieldaccess.FieldAccessorFactory.class
org.springframework.data.neo4j.fieldaccess.DynamicPropertiesFieldAccessorFactory$DynamicPropertiesFieldAccessor.class
org.springframework.data.neo4j.fieldaccess.LabelFieldAccessorFactory$LabelFieldAccessor.class
org.springframework.data.neo4j.fieldaccess.TransientFieldAccessorFactory.class
org.springframework.data.neo4j.fieldaccess.Neo4jConversionServiceFactoryBean$StringToShapeConverter.class
org.springframework.data.neo4j.fieldaccess.ConvertingNodePropertyFieldAccessorFactory.class
org.springframework.data.neo4j.fieldaccess.RelationshipNodeFieldAccessorFactory$1.class
org.springframework.data.neo4j.fieldaccess.RelatedToViaCollectionFieldAccessorFactory.class
org.springframework.data.neo4j.fieldaccess.ValidatingPropertyFieldAccessorListenerFactory.class
org.springframework.data.neo4j.fieldaccess.RelationshipDelegatingFieldAccessorFactory$Factory.class
org.springframework.data.neo4j.fieldaccess.RelationshipNodeFieldAccessorFactory$2.class
org.springframework.data.neo4j.fieldaccess.TransientFieldAccessorFactory$TransientFieldAccessor.class
org.springframework.data.neo4j.fieldaccess.PropertyFieldAccessorFactory.class
org.springframework.data.neo4j.fieldaccess.PrefixedDynamicProperties$PrefixUtil.class
org.springframework.data.neo4j.fieldaccess.PrefixedDynamicProperties.class
org.springframework.data.neo4j.fieldaccess.RelatedToViaSingleFieldAccessorFactory.class
org.springframework.data.neo4j.fieldaccess.FieldAccessorFactoryFactory.class
org.springframework.data.neo4j.fieldaccess.Neo4jConversionServiceFactoryBean$PointToStringConverter.class
org.springframework.data.neo4j.fieldaccess.DynamicPropertiesFieldAccessorFactory.class
org.springframework.data.neo4j.fieldaccess.DelegatingFieldAccessorFactory.class
org.springframework.data.neo4j.fieldaccess.DefaultEntityState.class
org.springframework.data.neo4j.fieldaccess.FieldAccessor.class
org.springframework.data.neo4j.fieldaccess.PrefixedDynamicProperties$1.class
org.springframework.data.neo4j.fieldaccess.RelationshipDelegatingFieldAccessorFactory.class
org.springframework.data.neo4j.fieldaccess.IndexingPropertyFieldAccessorListenerFactory.class
org.springframework.data.neo4j.fieldaccess.Neo4jConversionServiceFactoryBean.class
org.springframework.data.neo4j.fieldaccess.DynamicPropertiesContainer.class
org.springframework.data.neo4j.fieldaccess.ReadOnlyRelatedToCollectionFieldAccessorFactory.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
依赖Jar: |
aspectjrt-${aspectj}.jar
/org.aspectj/aspectjrt/${aspectj}
查看aspectjrt所有版本文件
spring-data-commons-${springdata.commons}.jar
/org.springframework.data/spring-data-commons/${springdata.commons}
查看spring-data-commons所有版本文件
querydsl-lucene3-${querydsl}.jar
/com.mysema.querydsl/querydsl-lucene3/${querydsl}
查看querydsl-lucene3所有版本文件
querydsl-apt-${querydsl}.jar
/com.mysema.querydsl/querydsl-apt/${querydsl}
查看querydsl-apt所有版本文件
jsr250-api-1.0.jar
/javax.annotation/jsr250-api/1.0
查看jsr250-api所有版本文件
el-api-${cdi}.jar
/javax.el/el-api/${cdi}
查看el-api所有版本文件
cdi-api-${cdi}.jar
/javax.enterprise/cdi-api/${cdi}
查看cdi-api所有版本文件
cditest-owb-${webbeans}.jar
/org.apache.openwebbeans.test/cditest-owb/${webbeans}
查看cditest-owb所有版本文件
javassist-3.18.1-GA.jar
/org.javassist/javassist/3.18.1-GA
查看javassist所有版本文件
servlet-api-2.5.jar
/javax.servlet/servlet-api/2.5
查看servlet-api所有版本文件
validation-api-${validation}.jar
/javax.validation/validation-api/${validation}
查看validation-api所有版本文件
hibernate-validator-4.2.0.Final.jar
/org.hibernate/hibernate-validator/4.2.0.Final
查看hibernate-validator所有版本文件
joda-time-${jodatime}.jar
/joda-time/joda-time/${jodatime}
查看joda-time所有版本文件
neo4j-cypher-dsl-${neo4j-cypher-dsl.version}.jar
/org.neo4j/neo4j-cypher-dsl/${neo4j-cypher-dsl.version}
查看neo4j-cypher-dsl所有版本文件
neo4j-spatial-${neo4j.spatial.version}.jar
/org.neo4j/neo4j-spatial/${neo4j.spatial.version}
查看neo4j-spatial所有版本文件
server-api-${neo4j.version}.jar
/org.neo4j/server-api/${neo4j.version}
查看server-api所有版本文件
commons-configuration-1.6.jar
/commons-configuration/commons-configuration/1.6
查看commons-configuration所有版本文件
logback-core-${logback}.jar
/ch.qos.logback/logback-core/${logback}
查看logback-core所有版本文件
|