| 组织ID: |
org.springframework.data |
| 项目ID: |
spring-data-neo4j |
| 版本: |
2.1.0.RELEASE |
| 最后修改时间: |
2018-12-01 12:53:00 |
| 包类型: |
jar |
| 标题: |
Spring Data Neo4j |
| 描述: |
|
| 大小: |
414.86KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-neo4j</artifactId>
<version>2.1.0.RELEASE</version>
</dependency>
|
| Gradle引入代码: |
org.springframework.data:spring-data-neo4j:2.1.0.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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-neo4j-parent</artifactId>
<version>2.1.0.RELEASE</version>
<relativePath>../spring-data-neo4j-parent/pom.xml</relativePath>
</parent>
<artifactId>spring-data-neo4j</artifactId>
<packaging>jar</packaging>
<name>Spring Data Neo4j</name>
<description><![CDATA[Spring Data Neo4j core support for Neo4j graph database, offering object graph mapping, a Neo4jTemplate and Spring-Data-Commons Repository implementations.
]]></description>
<url>http://www.springsource.org/spring-data/neo4j</url>
<properties>
<querydsl.version>2.7.3</querydsl.version>
</properties>
<dependencies>
<!-- Spring -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-aspects</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-orm</artifactId>
</dependency>
<!-- Spring Data -->
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-commons-core</artifactId>
</dependency>
<!-- Logging -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<scope>runtime</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<exclusions>
<exclusion>
<groupId>javax.mail</groupId>
<artifactId>mail</artifactId>
</exclusion>
<exclusion>
<groupId>javax.jms</groupId>
<artifactId>jms</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.jdmk</groupId>
<artifactId>jmxtools</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.jmx</groupId>
<artifactId>jmxri</artifactId>
</exclusion>
</exclusions>
<scope>runtime</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>jsr250-api</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjrt</artifactId>
<version>${aspectj.version}</version>
</dependency>
<dependency>
<groupId>cglib</groupId>
<artifactId>cglib</artifactId>
<version>2.2</version>
</dependency>
<!-- Neo4J -->
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j</artifactId>
</dependency>
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-cypher</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-cypher-dsl</artifactId>
</dependency>
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-shell</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-kernel</artifactId>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-ha</artifactId>
<scope>test</scope>
<version>${neo4j.version}</version>
</dependency>
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>server-api</artifactId>
<optional>true</optional>
</dependency>
<!-- Query DSL -->
<dependency>
<groupId>com.mysema.querydsl</groupId>
<artifactId>querydsl-core</artifactId>
<version>${querydsl.version}</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.mysema.querydsl</groupId>
<artifactId>querydsl-lucene</artifactId>
<version>${querydsl.version}</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}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.tinkerpop.blueprints</groupId>
<artifactId>blueprints-core</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.tinkerpop.blueprints</groupId>
<artifactId>blueprints-neo4j-graph</artifactId>
<exclusions>
<exclusion>
<groupId>org.neo4j</groupId>
<artifactId>neo4j</artifactId>
</exclusion>
</exclusions>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.tinkerpop.gremlin</groupId>
<artifactId>gremlin-groovy</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>commons-configuration</groupId>
<artifactId>commons-configuration</artifactId>
</dependency>
<!-- Neo4J Spatial-->
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-spatial</artifactId>
<optional>true</optional>
</dependency>
<!-- JPA -->
<dependency>
<groupId>org.hibernate.javax.persistence</groupId>
<artifactId>hibernate-jpa-2.0-api</artifactId>
<version>1.0.0.Final</version>
<optional>true</optional>
</dependency>
<!-- For Tests -->
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-entitymanager</artifactId>
<version>3.5.5-Final</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>hsqldb</groupId>
<artifactId>hsqldb</artifactId>
<version>1.8.0.10</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<version>1.0.0.GA</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
<version>4.0.2.GA</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.springsource.bundlor</groupId>
<artifactId>com.springsource.bundlor.maven</artifactId>
</plugin>
<plugin>
<groupId>com.mysema.maven</groupId>
<artifactId>maven-apt-plugin</artifactId>
<version>1.0.2</version>
<configuration>
<processor>org.springframework.data.neo4j.querydsl.SDNAnnotationProcessor</processor>
</configuration>
<executions>
<execution>
<id>test-sources</id>
<phase>generate-test-sources</phase>
<goals>
<goal>test-process</goal>
</goals>
<configuration>
<outputDirectory>target/generated-test-sources/querydsl</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
<!--
<testResources>
<testResource>
<directory>target/generated-test-sources/test</directory>
</testResource>
</testResources>
-->
</build>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
META-INF/spring.handlers
META-INF/spring.schemas
META-INF/spring.tooling
org.springframework.data.neo4j.template.GraphCallback$WithoutResult.class
org.springframework.data.neo4j.template.Neo4jOperations.class
org.springframework.data.neo4j.template.GraphCallback.class
org.springframework.data.neo4j.annotation.GraphProperty.class
org.springframework.data.neo4j.annotation.Indexed$Level.class
org.springframework.data.neo4j.annotation.EndNode.class
org.springframework.data.neo4j.annotation.GraphTraversal.class
org.springframework.data.neo4j.annotation.NodeEntity.class
org.springframework.data.neo4j.annotation.MapResult.class
org.springframework.data.neo4j.annotation.RelationshipType.class
org.springframework.data.neo4j.annotation.GraphId.class
org.springframework.data.neo4j.annotation.Indexed$Name.class
org.springframework.data.neo4j.annotation.ResultColumn.class
org.springframework.data.neo4j.annotation.Query.class
org.springframework.data.neo4j.annotation.RelatedToVia.class
org.springframework.data.neo4j.annotation.Indexed$1.class
org.springframework.data.neo4j.annotation.StartNode.class
org.springframework.data.neo4j.annotation.QueryType.class
org.springframework.data.neo4j.annotation.Fetch.class
org.springframework.data.neo4j.annotation.RelationshipEntity.class
org.springframework.data.neo4j.annotation.Indexed.class
org.springframework.data.neo4j.annotation.RelatedTo.class
org.springframework.data.neo4j.lifecycle.AfterSaveEvent.class
org.springframework.data.neo4j.lifecycle.DeleteEvent.class
org.springframework.data.neo4j.lifecycle.BeforeSaveEvent.class
org.springframework.data.neo4j.querydsl.SDNAnnotationProcessor.class
org.springframework.data.neo4j.fieldaccess.NodeDelegatingFieldAccessorFactory.class
org.springframework.data.neo4j.fieldaccess.PropertyFieldAccessorFactory.class
org.springframework.data.neo4j.fieldaccess.TraversalFieldAccessorFactory.class
org.springframework.data.neo4j.fieldaccess.RelationshipHelper$1.class
org.springframework.data.neo4j.fieldaccess.NodeDelegatingFieldAccessorFactory$Factory.class
org.springframework.data.neo4j.fieldaccess.PropertyFieldAccessorFactory$PropertyFieldAccessor.class
org.springframework.data.neo4j.fieldaccess.DetachedEntityState.class
org.springframework.data.neo4j.fieldaccess.DynamicPropertiesFieldAccessorFactory.class
org.springframework.data.neo4j.fieldaccess.Neo4jConversionServiceFactoryBean$StringToEnumConverterFactory.class
org.springframework.data.neo4j.fieldaccess.ValidatingNodePropertyFieldAccessorListenerFactory$ValidatingNodePropertyFieldAccessorListener.class
org.springframework.data.neo4j.fieldaccess.RelatedToViaCollectionFieldAccessorFactory.class
org.springframework.data.neo4j.fieldaccess.RelatedToCollectionFieldAccessorFactory.class
org.springframework.data.neo4j.fieldaccess.QueryFieldAccessorFactory$QueryFieldAccessor.class
org.springframework.data.neo4j.fieldaccess.RelatedToViaSingleFieldAccessorFactory$RelatedToViaSingleFieldAccessor.class
org.springframework.data.neo4j.fieldaccess.Neo4jConversionServiceFactoryBean$StringToEnumConverterFactory$StringToEnum.class
org.springframework.data.neo4j.fieldaccess.DefaultEntityState.class
org.springframework.data.neo4j.fieldaccess.Neo4jConversionServiceFactoryBean.class
org.springframework.data.neo4j.fieldaccess.DynamicPropertiesFieldAccessorFactory$DynamicPropertiesFieldAccessor.class
org.springframework.data.neo4j.fieldaccess.FieldAccessorListenerFactory.class
org.springframework.data.neo4j.fieldaccess.PrefixedDynamicProperties$RemovePrefixIterableWrapper.class
org.springframework.data.neo4j.fieldaccess.TraversalFieldAccessorFactory$TraversalFieldAccessor.class
org.springframework.data.neo4j.fieldaccess.FieldAccessorFactory.class
org.springframework.data.neo4j.fieldaccess.PrefixedDynamicProperties$PrefixUtil.class
org.springframework.data.neo4j.fieldaccess.RelatedToViaSingleFieldAccessorFactory.class
org.springframework.data.neo4j.fieldaccess.FieldAccessListener.class
org.springframework.data.neo4j.fieldaccess.GraphBackedEntityIterableWrapper.class
org.springframework.data.neo4j.fieldaccess.PrefixedDynamicProperties$RemovePrefixIterableWrapper$RemovePrefixIteratorWrapper.class
org.springframework.data.neo4j.fieldaccess.FieldAccessorFactoryProviders$FieldAccessorFactoryProvider.class
org.springframework.data.neo4j.fieldaccess.PrefixedDynamicProperties$1.class
org.springframework.data.neo4j.fieldaccess.DynamicPropertiesContainer.class
org.springframework.data.neo4j.fieldaccess.RelatedToSingleFieldAccessorFactory$RelatedToSingleFieldAccessor.class
org.springframework.data.neo4j.fieldaccess.DelegatingFieldAccessorFactory$1.class
org.springframework.data.neo4j.fieldaccess.DynamicProperties.class
org.springframework.data.neo4j.fieldaccess.RelationshipNodeFieldAccessorFactory$RelationshipNodeFieldAccessor.class
org.springframework.data.neo4j.fieldaccess.DelegatingFieldAccessorFactory.class
org.springframework.data.neo4j.fieldaccess.ConvertingNodePropertyFieldAccessorFactory.class
org.springframework.data.neo4j.fieldaccess.RelationshipDelegatingFieldAccessorFactory$Factory.class
org.springframework.data.neo4j.fieldaccess.RelatedToSingleFieldAccessorFactory.class
org.springframework.data.neo4j.fieldaccess.PropertyConverter.class
org.springframework.data.neo4j.fieldaccess.ReadOnlyRelatedToCollectionFieldAccessorFactory.class
org.springframework.data.neo4j.fieldaccess.IdFieldAccessorFactory.class
org.springframework.data.neo4j.fieldaccess.RelationshipNodeFieldAccessorFactory$1.class
org.springframework.data.neo4j.fieldaccess.IndexingPropertyFieldAccessorListenerFactory$IndexingPropertyFieldAccessorListener.class
org.springframework.data.neo4j.fieldaccess.RelationshipDelegatingFieldAccessorFactory.class
org.springframework.data.neo4j.fieldaccess.Neo4jConversionServiceFactoryBean$NumberToDateConverter.class
org.springframework.data.neo4j.fieldaccess.RelatedToFieldAccessor.class
org.springframework.data.neo4j.fieldaccess.FieldAccessor.class
org.springframework.data.neo4j.fieldaccess.FieldAccessorFactoryProviders.class
org.springframework.data.neo4j.fieldaccess.TransientFieldAccessorFactory$TransientFieldAccessor.class
org.springframework.data.neo4j.fieldaccess.FieldAccessorFactoryFactory.class
org.springframework.data.neo4j.fieldaccess.DetachedEntityState$ExistingValue.class
org.springframework.data.neo4j.fieldaccess.RelationshipNodeFieldAccessorFactory.class
org.springframework.data.neo4j.fieldaccess.ConvertingNodePropertyFieldAccessorFactory$ConvertingNodePropertyFieldAccessor.class
org.springframework.data.neo4j.fieldaccess.RelatedToCollectionFieldAccessorFactory$RelatedToCollectionFieldAccessor.class
org.springframework.data.neo4j.fieldaccess.PrefixedDynamicProperties.class
org.springframework.data.neo4j.fieldaccess.ManagedPrefixedDynamicProperties.class
org.springframework.data.neo4j.fieldaccess.TransientFieldAccessorFactory.class
org.springframework.data.neo4j.fieldaccess.Neo4jConversionServiceFactoryBean$EnumToStringConverter.class
org.springframework.data.neo4j.fieldaccess.IdFieldAccessorFactory$IdFieldAccessor.class
org.springframework.data.neo4j.fieldaccess.ValidatingNodePropertyFieldAccessorListenerFactory.class
org.springframework.data.neo4j.fieldaccess.ReadOnlyRelatedToCollectionFieldAccessorFactory$ReadOnlyRelatedToCollectionFieldAccessor.class
org.springframework.data.neo4j.fieldaccess.ManagedFieldAccessorSet$1.class
org.springframework.data.neo4j.fieldaccess.Neo4jConversionServiceFactoryBean$DateToLongConverter.class
org.springframework.data.neo4j.fieldaccess.DelegatingFieldAccessorFactory$2.class
org.springframework.data.neo4j.fieldaccess.RelationshipEntities.class
org.springframework.data.neo4j.fieldaccess.RelatedToViaCollectionFieldAccessorFactory$RelatedToViaCollectionFieldAccessor.class
org.springframework.data.neo4j.fieldaccess.IndexingPropertyFieldAccessorListenerFactory.class
org.springframework.data.neo4j.fieldaccess.RelationshipNodeFieldAccessorFactory$2.class
org.springframework.data.neo4j.fieldaccess.RelationshipHelper.class
org.springframework.data.neo4j.fieldaccess.Neo4jConversionServiceFactoryBean$StringToDateConverter.class
org.springframework.data.neo4j.fieldaccess.QueryFieldAccessorFactory.class
org.springframework.data.neo4j.fieldaccess.Neo4jConversionServiceFactoryBean$DateToStringConverter.class
org.springframework.data.neo4j.fieldaccess.ManagedFieldAccessorSet.class
org.springframework.data.neo4j.repository.AbstractGraphRepository$Query.class
org.springframework.data.neo4j.repository.AbstractGraphRepository$5.class
org.springframework.data.neo4j.repository.GraphRepositoryFactory.class
org.springframework.data.neo4j.repository.AbstractGraphRepository$5$1.class
org.springframework.data.neo4j.repository.AbstractGraphRepository$IndexHitsWrapper.class
org.springframework.data.neo4j.repository.NodeGraphRepositoryImpl.class
org.springframework.data.neo4j.repository.CypherDslRepository.class
org.springframework.data.neo4j.repository.CRUDRepository.class
org.springframework.data.neo4j.repository.AbstractGraphRepository$2.class
org.springframework.data.neo4j.repository.AbstractGraphRepository$4.class
org.springframework.data.neo4j.repository.GraphMetamodelEntityInformation.class
org.springframework.data.neo4j.repository.IndexRepository.class
org.springframework.data.neo4j.repository.GraphRepositoryFactory$1.class
org.springframework.data.neo4j.repository.GraphRepositoryFactoryBean.class
org.springframework.data.neo4j.repository.GraphEntityInformation.class
org.springframework.data.neo4j.repository.GraphRepository.class
org.springframework.data.neo4j.repository.AbstractGraphRepository$3.class
org.springframework.data.neo4j.repository.TraversalRepository.class
org.springframework.data.neo4j.repository.AbstractGraphRepository.class
org.springframework.data.neo4j.repository.NamedIndexRepository.class
org.springframework.data.neo4j.repository.RelationshipGraphRepository.class
org.springframework.data.neo4j.repository.AbstractGraphRepository$1.class
org.springframework.data.neo4j.repository.query.PartInfo.class
org.springframework.data.neo4j.repository.query.DerivedCypherRepositoryQuery.class
org.springframework.data.neo4j.repository.query.MatchClause.class
org.springframework.data.neo4j.repository.query.QueryTemplates$1.class
org.springframework.data.neo4j.repository.query.CypherGraphRepositoryQuery.class
org.springframework.data.neo4j.repository.query.IndexRestrictingStartClause.class
org.springframework.data.neo4j.repository.query.GraphQueryMethod.class
org.springframework.data.neo4j.repository.query.NodeEntityMatchingStartClause.class
org.springframework.data.neo4j.repository.query.RepositoryQueryException.class
org.springframework.data.neo4j.repository.query.ParameterResolver.class
org.springframework.data.neo4j.repository.query.GraphQueryMethod$1.class
org.springframework.data.neo4j.repository.query.QueryTemplates.class
org.springframework.data.neo4j.repository.query.GraphRepositoryQuery.class
org.springframework.data.neo4j.repository.query.WhereClause.class
org.springframework.data.neo4j.repository.query.CypherQueryDefinition.class
org.springframework.data.neo4j.repository.query.VariableContext.class
org.springframework.data.neo4j.repository.query.CypherQuery.class
org.springframework.data.neo4j.repository.query.TypeRestrictingWhereClause.class
org.springframework.data.neo4j.repository.query.GremlinGraphRepositoryQuery.class
org.springframework.data.neo4j.repository.query.StartClause.class
org.springframework.data.neo4j.repository.query.CypherQueryBuilder.class
org.springframework.data.neo4j.repository.query.CypherQueryCreator.class
org.springframework.data.neo4j.repository.SpatialRepository.class
org.springframework.data.neo4j.repository.RelationshipOperationsRepository.class
org.springframework.data.neo4j.repository.AbstractGraphRepository$GeoNodeIndexHitsWrapper.class
org.springframework.data.neo4j.mapping.RelationshipInfo.class
org.springframework.data.neo4j.mapping.RelationshipResult.class
org.springframework.data.neo4j.mapping.Neo4jPersistentProperty.class
org.springframework.data.neo4j.mapping.Neo4jPersistentEntity.class
org.springframework.data.neo4j.mapping.Neo4jNodeConverter.class
org.springframework.data.neo4j.mapping.InvalidEntityTypeException.class
org.springframework.data.neo4j.mapping.MappingPolicy$DefaultMappingPolicy.class
org.springframework.data.neo4j.mapping.EntityInstantiator.class
org.springframework.data.neo4j.mapping.MappingPolicy$Option.class
org.springframework.data.neo4j.mapping.RelationshipResult$Type.class
org.springframework.data.neo4j.mapping.RelationshipProperties.class
org.springframework.data.neo4j.mapping.MappingPolicy.class
org.springframework.data.neo4j.mapping.ManagedEntity.class
org.springframework.data.neo4j.mapping.IndexInfo.class
org.springframework.data.neo4j.mapping.EntityPersister.class
org.springframework.data.neo4j.mapping.Neo4jEntityConverter.class
org.springframework.data.neo4j.conversion.QueryResultBuilder.class
org.springframework.data.neo4j.conversion.QueryResultBuilder$1$1.class
org.springframework.data.neo4j.conversion.Result.class
org.springframework.data.neo4j.conversion.ResultConverter.class
org.springframework.data.neo4j.conversion.EndResult.class
org.springframework.data.neo4j.conversion.ResultConverter$ResultConverterAdapter.class
org.springframework.data.neo4j.conversion.ContainerConverter.class
org.springframework.data.neo4j.conversion.Handler.class
org.springframework.data.neo4j.conversion.QueryMapResulConverter.class
org.springframework.data.neo4j.conversion.QueryResultBuilder$1.class
org.springframework.data.neo4j.conversion.DefaultConverter.class
org.springframework.data.neo4j.support.Neo4jTemplate.class
org.springframework.data.neo4j.support.DelegatingGraphDatabase$FailingQueryEngine.class
org.springframework.data.neo4j.support.ParameterCheck.class
org.springframework.data.neo4j.support.DelegatingGraphDatabase$1.class
org.springframework.data.neo4j.support.Neo4jExceptionTranslator.class
org.springframework.data.neo4j.support.node.EntityStateFactory.class
org.springframework.data.neo4j.support.node.Neo4jHelper.class
org.springframework.data.neo4j.support.node.NodeEntityStateFactory.class
org.springframework.data.neo4j.support.node.NodeEntityState.class
org.springframework.data.neo4j.support.node.NodeEntityInstantiator.class
org.springframework.data.neo4j.support.Infrastructure.class
org.springframework.data.neo4j.support.Neo4jTemplate$3.class
org.springframework.data.neo4j.support.DelegatingGraphDatabase.class
org.springframework.data.neo4j.support.Neo4jTemplate$1.class
org.springframework.data.neo4j.support.DoReturn.class
org.springframework.data.neo4j.support.DelegatingGraphDatabase$2.class
org.springframework.data.neo4j.support.MappingInfrastructure.class
org.springframework.data.neo4j.support.index.EmptyIndexHits.class
org.springframework.data.neo4j.support.index.IndexProvider.class
org.springframework.data.neo4j.support.index.NoSuchIndexException.class
org.springframework.data.neo4j.support.index.ClosableIndexHits.class
org.springframework.data.neo4j.support.index.IndexType$4.class
org.springframework.data.neo4j.support.index.IndexType$1.class
org.springframework.data.neo4j.support.index.IndexProviderImpl.class
org.springframework.data.neo4j.support.index.IndexType$3.class
org.springframework.data.neo4j.support.index.NullReadableIndex.class
org.springframework.data.neo4j.support.index.IndexType$2.class
org.springframework.data.neo4j.support.index.IndexType.class
org.springframework.data.neo4j.support.mapping.Neo4jEntityPersister$StackedEntityCache$1.class
org.springframework.data.neo4j.support.mapping.Neo4jPersistentEntityImpl.class
org.springframework.data.neo4j.support.mapping.AbstractConstructorEntityInstantiator$1.class
org.springframework.data.neo4j.support.mapping.SourceStateTransmitter$2.class
org.springframework.data.neo4j.support.mapping.Neo4jEntityPersister.class
org.springframework.data.neo4j.support.mapping.Neo4jPersistentPropertyImpl.class
org.springframework.data.neo4j.support.mapping.ClassNameAlias.class
org.springframework.data.neo4j.support.mapping.Neo4jEntityFetchHandler.class
org.springframework.data.neo4j.support.mapping.IndexCreationMappingEventListener$1.class
org.springframework.data.neo4j.support.mapping.HierarchicalTypeInformationMapper.class
org.springframework.data.neo4j.support.mapping.Neo4jEntityPersister$CachedInstantiator.class
org.springframework.data.neo4j.support.mapping.Neo4jEntityPersister$StackedEntityCache$Entry.class
org.springframework.data.neo4j.support.mapping.EntityStateHandler.class
org.springframework.data.neo4j.support.mapping.EntityRemover.class
org.springframework.data.neo4j.support.mapping.TRSTypeAliasAccessor.class
org.springframework.data.neo4j.support.mapping.IndexCreationMappingEventListener.class
org.springframework.data.neo4j.support.mapping.Neo4jMappingContext.class
org.springframework.data.neo4j.support.mapping.AbstractConstructorEntityInstantiator$2.class
org.springframework.data.neo4j.support.mapping.Neo4jEntityConverterImpl$1.class
org.springframework.data.neo4j.support.mapping.Neo4jEntityPersister$CachedConverter.class
org.springframework.data.neo4j.support.mapping.SourceStateTransmitter$4.class
org.springframework.data.neo4j.support.mapping.EntityAlias.class
org.springframework.data.neo4j.support.mapping.EntityCreatingClosableIterable.class
org.springframework.data.neo4j.support.mapping.SourceStateTransmitter$1.class
org.springframework.data.neo4j.support.mapping.StoredEntityType.class
org.springframework.data.neo4j.support.mapping.EntityTools.class
org.springframework.data.neo4j.support.mapping.SourceStateTransmitter$3.class
org.springframework.data.neo4j.support.mapping.Neo4jEntityConverterImpl.class
org.springframework.data.neo4j.support.mapping.Neo4jEntityPersister$StackedEntityCache.class
org.springframework.data.neo4j.support.mapping.AbstractConstructorEntityInstantiator$3.class
org.springframework.data.neo4j.support.mapping.AbstractConstructorEntityInstantiator.class
org.springframework.data.neo4j.support.mapping.SourceStateTransmitter.class
org.springframework.data.neo4j.support.mapping.AbstractConstructorEntityInstantiator$4.class
org.springframework.data.neo4j.support.GraphDatabaseFactory.class
org.springframework.data.neo4j.support.GenericTypeExtractor.class
org.springframework.data.neo4j.support.DelegatingGraphDatabase$3.class
org.springframework.data.neo4j.support.Neo4jTemplateAware.class
org.springframework.data.neo4j.support.conversion.QueryResultProxy.class
org.springframework.data.neo4j.support.conversion.NoSuchColumnFoundException.class
org.springframework.data.neo4j.support.conversion.EntityResultConverter.class
org.springframework.data.neo4j.support.relationship.RelationshipEntityState.class
org.springframework.data.neo4j.support.relationship.RelationshipEntityStateFactory.class
org.springframework.data.neo4j.support.relationship.RelationshipEntityInstantiator.class
org.springframework.data.neo4j.support.query.GremlinExecutor.class
org.springframework.data.neo4j.support.query.QueryEngine.class
org.springframework.data.neo4j.support.query.ConversionServiceQueryResultConverter.class
org.springframework.data.neo4j.support.query.CypherQueryEngine.class
org.springframework.data.neo4j.support.query.CypherQueryExecutor.class
org.springframework.data.neo4j.support.query.GremlinQueryEngine.class
org.springframework.data.neo4j.support.query.QueryOperations.class
org.springframework.data.neo4j.support.query.QueryParameterConverter.class
org.springframework.data.neo4j.support.query.GremlinExecutor$1.class
org.springframework.data.neo4j.support.query.CypherQueryExecutor$1.class
org.springframework.data.neo4j.support.query.GremlinExecutor$2.class
org.springframework.data.neo4j.support.Neo4jTemplate$2.class
org.springframework.data.neo4j.support.typerepresentation.IndexingNodeTypeRepresentationStrategy.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
| 依赖Jar: |
aspectjrt-${aspectj.version}.jar
/org.aspectj/aspectjrt/${aspectj.version}
查看aspectjrt所有版本文件
cglib-2.2.jar
/cglib/cglib/2.2
查看cglib所有版本文件
neo4j-ha-${neo4j.version}.jar
/org.neo4j/neo4j-ha/${neo4j.version}
查看neo4j-ha所有版本文件
querydsl-core-${querydsl.version}.jar
/com.mysema.querydsl/querydsl-core/${querydsl.version}
查看querydsl-core所有版本文件
querydsl-lucene-${querydsl.version}.jar
/com.mysema.querydsl/querydsl-lucene/${querydsl.version}
查看querydsl-lucene所有版本文件
querydsl-apt-${querydsl.version}.jar
/com.mysema.querydsl/querydsl-apt/${querydsl.version}
查看querydsl-apt所有版本文件
hibernate-jpa-2.0-api-1.0.0.Final.jar
/org.hibernate.javax.persistence/hibernate-jpa-2.0-api/1.0.0.Final
查看hibernate-jpa-2.0-api所有版本文件
hibernate-entitymanager-3.5.5-Final.jar
/org.hibernate/hibernate-entitymanager/3.5.5-Final
查看hibernate-entitymanager所有版本文件
hsqldb-1.8.0.10.jar
/hsqldb/hsqldb/1.8.0.10
查看hsqldb所有版本文件
validation-api-1.0.0.GA.jar
/javax.validation/validation-api/1.0.0.GA
查看validation-api所有版本文件
hibernate-validator-4.0.2.GA.jar
/org.hibernate/hibernate-validator/4.0.2.GA
查看hibernate-validator所有版本文件
|