| 组织ID: |
org.springframework.data |
| 项目ID: |
spring-data-neo4j |
| 版本: |
2.0.1.RELEASE |
| 最后修改时间: |
2018-08-21 11:31:56 |
| 包类型: |
jar |
| 标题: |
Spring Data Neo4j |
| 描述: |
|
| 大小: |
370.69KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-neo4j</artifactId>
<version>2.0.1.RELEASE</version>
</dependency>
|
| Gradle引入代码: |
org.springframework.data:spring-data-neo4j:2.0.1.RELEASE
|
| 下载Jar包: |
|
| POM文件内容: |
<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.0.1.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>
<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>
<dependency>
<groupId>org.ow2.jotm</groupId>
<artifactId>jotm-core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.ow2.spec.ee</groupId>
<artifactId>ow2-connector-1.5-spec</artifactId>
<scope>provided</scope>
</dependency>
<!-- Logging -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<scope>runtime</scope>
</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>
</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>
<!--optional>true</optional-->
</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>
<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>
<!-- 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>
</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>
<repositories>
<repository>
<id>neo4j-public-repository</id>
<name>Neo4J Public Repository</name>
<url>http://m2.neo4j.org</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
<repository>
<id>spring-maven-snapshot</id>
<snapshots>
<enabled>true</enabled>
</snapshots>
<name>Springframework Maven SNAPSHOT Repository</name>
<url>http://maven.springframework.org/snapshot</url>
</repository>
</repositories>
<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>
</plugins>
</build>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
META-INF/services/org.neo4j.kernel.impl.transaction.TransactionManagerProvider
META-INF/spring.handlers
META-INF/spring.schemas
org.springframework.data.neo4j.annotation.EndNode.class
org.springframework.data.neo4j.annotation.Fetch.class
org.springframework.data.neo4j.annotation.GraphId.class
org.springframework.data.neo4j.annotation.GraphProperty.class
org.springframework.data.neo4j.annotation.GraphTraversal.class
org.springframework.data.neo4j.annotation.Indexed$1.class
org.springframework.data.neo4j.annotation.Indexed$Level.class
org.springframework.data.neo4j.annotation.Indexed$Name.class
org.springframework.data.neo4j.annotation.Indexed.class
org.springframework.data.neo4j.annotation.MapResult.class
org.springframework.data.neo4j.annotation.NodeEntity.class
org.springframework.data.neo4j.annotation.Query.class
org.springframework.data.neo4j.annotation.QueryType.class
org.springframework.data.neo4j.annotation.RelatedTo.class
org.springframework.data.neo4j.annotation.RelatedToVia.class
org.springframework.data.neo4j.annotation.RelationshipEntity.class
org.springframework.data.neo4j.annotation.RelationshipType.class
org.springframework.data.neo4j.annotation.ResultColumn.class
org.springframework.data.neo4j.annotation.StartNode.class
org.springframework.data.neo4j.config.ConfigurationCheck.class
org.springframework.data.neo4j.config.DataGraphBeanDefinitionParser.class
org.springframework.data.neo4j.config.DataGraphNamespaceHandler$1.class
org.springframework.data.neo4j.config.DataGraphNamespaceHandler$DataGraphRepositoryConfigDefinitionParser$DataGraphRepositoryConfiguration.class
org.springframework.data.neo4j.config.DataGraphNamespaceHandler$DataGraphRepositoryConfigDefinitionParser$SimpleDataGraphRepositoryConfiguration$AutomaticDataGraphRepositoryConfiguration.class
org.springframework.data.neo4j.config.DataGraphNamespaceHandler$DataGraphRepositoryConfigDefinitionParser$SimpleDataGraphRepositoryConfiguration$ManualDataGraphRepositoryConfiguration.class
org.springframework.data.neo4j.config.DataGraphNamespaceHandler$DataGraphRepositoryConfigDefinitionParser$SimpleDataGraphRepositoryConfiguration.class
org.springframework.data.neo4j.config.DataGraphNamespaceHandler$DataGraphRepositoryConfigDefinitionParser.class
org.springframework.data.neo4j.config.DataGraphNamespaceHandler.class
org.springframework.data.neo4j.config.Neo4jConfiguration.class
org.springframework.data.neo4j.config.NullTransactionManager$1.class
org.springframework.data.neo4j.config.NullTransactionManager.class
org/springframework/data/neo4j/config/spring-neo4j-2.0.xsd
org.springframework.data.neo4j.conversion.ContainerConverter.class
org.springframework.data.neo4j.conversion.DefaultConverter.class
org.springframework.data.neo4j.conversion.EndResult.class
org.springframework.data.neo4j.conversion.Handler.class
org.springframework.data.neo4j.conversion.QueryMapResulConverter.class
org.springframework.data.neo4j.conversion.QueryResultBuilder$1$1.class
org.springframework.data.neo4j.conversion.QueryResultBuilder$1.class
org.springframework.data.neo4j.conversion.QueryResultBuilder.class
org.springframework.data.neo4j.conversion.Result.class
org.springframework.data.neo4j.conversion.ResultConverter$ResultConverterAdapter.class
org.springframework.data.neo4j.conversion.ResultConverter.class
org.springframework.data.neo4j.core.EntityPath.class
org.springframework.data.neo4j.core.EntityState.class
org.springframework.data.neo4j.core.FieldTraversalDescriptionBuilder.class
org.springframework.data.neo4j.core.GraphDatabase.class
org.springframework.data.neo4j.core.NodeTypeRepresentationStrategy.class
org.springframework.data.neo4j.core.RelationshipTypeRepresentationStrategy.class
org.springframework.data.neo4j.core.TypeRepresentationStrategy.class
org.springframework.data.neo4j.core.UncategorizedGraphStoreException.class
org.springframework.data.neo4j.fieldaccess.AbstractNodeRelationshipFieldAccessor$1.class
org.springframework.data.neo4j.fieldaccess.AbstractNodeRelationshipFieldAccessor.class
org.springframework.data.neo4j.fieldaccess.ConvertingNodePropertyFieldAccessorFactory$ConvertingNodePropertyFieldAccessor.class
org.springframework.data.neo4j.fieldaccess.ConvertingNodePropertyFieldAccessorFactory.class
org.springframework.data.neo4j.fieldaccess.DefaultEntityState.class
org.springframework.data.neo4j.fieldaccess.DelegatingFieldAccessorFactory$1.class
org.springframework.data.neo4j.fieldaccess.DelegatingFieldAccessorFactory$2.class
org.springframework.data.neo4j.fieldaccess.DelegatingFieldAccessorFactory.class
org.springframework.data.neo4j.fieldaccess.DetachedEntityState$ExistingValue.class
org.springframework.data.neo4j.fieldaccess.DetachedEntityState.class
org.springframework.data.neo4j.fieldaccess.DynamicProperties.class
org.springframework.data.neo4j.fieldaccess.DynamicPropertiesContainer.class
org.springframework.data.neo4j.fieldaccess.DynamicPropertiesFieldAccessorFactory$DynamicPropertiesFieldAccessor.class
org.springframework.data.neo4j.fieldaccess.DynamicPropertiesFieldAccessorFactory.class
org.springframework.data.neo4j.fieldaccess.FieldAccessListener.class
org.springframework.data.neo4j.fieldaccess.FieldAccessor.class
org.springframework.data.neo4j.fieldaccess.FieldAccessorFactory.class
org.springframework.data.neo4j.fieldaccess.FieldAccessorFactoryProviders$FieldAccessorFactoryProvider.class
org.springframework.data.neo4j.fieldaccess.FieldAccessorFactoryProviders.class
org.springframework.data.neo4j.fieldaccess.FieldAccessorListenerFactory.class
org.springframework.data.neo4j.fieldaccess.GraphBackedEntityIterableWrapper.class
org.springframework.data.neo4j.fieldaccess.IdFieldAccessorFactory$IdFieldAccessor.class
org.springframework.data.neo4j.fieldaccess.IdFieldAccessorFactory.class
org.springframework.data.neo4j.fieldaccess.IndexingPropertyFieldAccessorListenerFactory$IndexingPropertyFieldAccessorListener.class
org.springframework.data.neo4j.fieldaccess.IndexingPropertyFieldAccessorListenerFactory.class
org.springframework.data.neo4j.fieldaccess.ManagedFieldAccessorSet$1.class
org.springframework.data.neo4j.fieldaccess.ManagedFieldAccessorSet.class
org.springframework.data.neo4j.fieldaccess.ManagedPrefixedDynamicProperties.class
org.springframework.data.neo4j.fieldaccess.Neo4jConversionServiceFactoryBean$DateToLongConverter.class
org.springframework.data.neo4j.fieldaccess.Neo4jConversionServiceFactoryBean$EnumToStringConverter.class
org.springframework.data.neo4j.fieldaccess.Neo4jConversionServiceFactoryBean$LongToDateConverter.class
org.springframework.data.neo4j.fieldaccess.Neo4jConversionServiceFactoryBean$StringToEnumConverterFactory$StringToEnum.class
org.springframework.data.neo4j.fieldaccess.Neo4jConversionServiceFactoryBean$StringToEnumConverterFactory.class
org.springframework.data.neo4j.fieldaccess.Neo4jConversionServiceFactoryBean.class
org.springframework.data.neo4j.fieldaccess.NodeDelegatingFieldAccessorFactory.class
org.springframework.data.neo4j.fieldaccess.NodeRelationshipFieldAccessorFactory.class
org.springframework.data.neo4j.fieldaccess.NodeToNodesRelationshipFieldAccessor.class
org.springframework.data.neo4j.fieldaccess.OneToNRelationshipEntityFieldAccessorFactory$OneToNRelationshipEntityFieldAccessor.class
org.springframework.data.neo4j.fieldaccess.OneToNRelationshipEntityFieldAccessorFactory.class
org.springframework.data.neo4j.fieldaccess.OneToNRelationshipFieldAccessorFactory$OneToNRelationshipFieldAccessor.class
org.springframework.data.neo4j.fieldaccess.OneToNRelationshipFieldAccessorFactory.class
org.springframework.data.neo4j.fieldaccess.PrefixedDynamicProperties$1.class
org.springframework.data.neo4j.fieldaccess.PrefixedDynamicProperties$PrefixUtil.class
org.springframework.data.neo4j.fieldaccess.PrefixedDynamicProperties$RemovePrefixIterableWrapper$RemovePrefixIteratorWrapper.class
org.springframework.data.neo4j.fieldaccess.PrefixedDynamicProperties$RemovePrefixIterableWrapper.class
org.springframework.data.neo4j.fieldaccess.PrefixedDynamicProperties.class
org.springframework.data.neo4j.fieldaccess.PropertyConverter.class
org.springframework.data.neo4j.fieldaccess.PropertyFieldAccessorFactory$PropertyFieldAccessor.class
org.springframework.data.neo4j.fieldaccess.PropertyFieldAccessorFactory.class
org.springframework.data.neo4j.fieldaccess.QueryFieldAccessorFactory$QueryFieldAccessor.class
org.springframework.data.neo4j.fieldaccess.QueryFieldAccessorFactory.class
org.springframework.data.neo4j.fieldaccess.ReadOnlyOneToNRelationshipFieldAccessorFactory$ReadOnlyOneToNRelationshipFieldAccessor.class
org.springframework.data.neo4j.fieldaccess.ReadOnlyOneToNRelationshipFieldAccessorFactory.class
org.springframework.data.neo4j.fieldaccess.RelationshipDelegatingFieldAccessorFactory.class
org.springframework.data.neo4j.fieldaccess.RelationshipNodeFieldAccessorFactory$1.class
org.springframework.data.neo4j.fieldaccess.RelationshipNodeFieldAccessorFactory$2.class
org.springframework.data.neo4j.fieldaccess.RelationshipNodeFieldAccessorFactory$RelationshipNodeFieldAccessor.class
org.springframework.data.neo4j.fieldaccess.RelationshipNodeFieldAccessorFactory.class
org.springframework.data.neo4j.fieldaccess.SingleRelationshipFieldAccessorFactory$SingleRelationshipFieldAccessor.class
org.springframework.data.neo4j.fieldaccess.SingleRelationshipFieldAccessorFactory.class
org.springframework.data.neo4j.fieldaccess.TransientFieldAccessorFactory$TransientFieldAccessor.class
org.springframework.data.neo4j.fieldaccess.TransientFieldAccessorFactory.class
org.springframework.data.neo4j.fieldaccess.TraversalFieldAccessorFactory$TraversalFieldAccessor.class
org.springframework.data.neo4j.fieldaccess.TraversalFieldAccessorFactory.class
org.springframework.data.neo4j.fieldaccess.ValidatingNodePropertyFieldAccessorListenerFactory$ValidatingNodePropertyFieldAccessorListener.class
org.springframework.data.neo4j.fieldaccess.ValidatingNodePropertyFieldAccessorListenerFactory.class
org.springframework.data.neo4j.mapping.EntityInstantiator.class
org.springframework.data.neo4j.mapping.EntityPersister.class
org.springframework.data.neo4j.mapping.IndexInfo.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.MappingPolicy$Option.class
org.springframework.data.neo4j.mapping.MappingPolicy.class
org.springframework.data.neo4j.mapping.Neo4jEntityConverter.class
org.springframework.data.neo4j.mapping.Neo4jNodeConverter.class
org.springframework.data.neo4j.mapping.Neo4jPersistentEntity.class
org.springframework.data.neo4j.mapping.Neo4jPersistentProperty.class
org.springframework.data.neo4j.mapping.RelationshipInfo.class
org.springframework.data.neo4j.mapping.RelationshipProperties.class
org.springframework.data.neo4j.mapping.RelationshipResult$Type.class
org.springframework.data.neo4j.mapping.RelationshipResult.class
org.springframework.data.neo4j.repository.AbstractGraphRepository$1.class
org.springframework.data.neo4j.repository.AbstractGraphRepository$2.class
org.springframework.data.neo4j.repository.AbstractGraphRepository$3.class
org.springframework.data.neo4j.repository.AbstractGraphRepository$4.class
org.springframework.data.neo4j.repository.AbstractGraphRepository$GeoNodeIndexHitsWrapper.class
org.springframework.data.neo4j.repository.AbstractGraphRepository$IndexHitsWrapper.class
org.springframework.data.neo4j.repository.AbstractGraphRepository$Query.class
org.springframework.data.neo4j.repository.AbstractGraphRepository.class
org.springframework.data.neo4j.repository.CRUDRepository.class
org.springframework.data.neo4j.repository.CypherDslRepository.class
org.springframework.data.neo4j.repository.GraphEntityInformation.class
org.springframework.data.neo4j.repository.GraphMetamodelEntityInformation.class
org.springframework.data.neo4j.repository.GraphRepository.class
org.springframework.data.neo4j.repository.GraphRepositoryFactory$1.class
org.springframework.data.neo4j.repository.GraphRepositoryFactory.class
org.springframework.data.neo4j.repository.GraphRepositoryFactoryBean.class
org.springframework.data.neo4j.repository.IndexRepository.class
org.springframework.data.neo4j.repository.NamedIndexRepository.class
org.springframework.data.neo4j.repository.NodeGraphRepositoryImpl.class
org.springframework.data.neo4j.repository.query.CypherGraphRepositoryQuery.class
org.springframework.data.neo4j.repository.query.CypherQueryBuilder.class
org.springframework.data.neo4j.repository.query.CypherQueryCreator.class
org.springframework.data.neo4j.repository.query.CypherQueryDefinition.class
org.springframework.data.neo4j.repository.query.DerivedCypherRepositoryQuery.class
org.springframework.data.neo4j.repository.query.GraphQueryMethod$1.class
org.springframework.data.neo4j.repository.query.GraphQueryMethod.class
org.springframework.data.neo4j.repository.query.GraphRepositoryQuery.class
org.springframework.data.neo4j.repository.query.GremlinGraphRepositoryQuery.class
org.springframework.data.neo4j.repository.query.MatchClause.class
org.springframework.data.neo4j.repository.query.ParameterResolver.class
org.springframework.data.neo4j.repository.query.PartInfo.class
org.springframework.data.neo4j.repository.query.QueryTemplates$1.class
org.springframework.data.neo4j.repository.query.QueryTemplates.class
org.springframework.data.neo4j.repository.query.StartClause.class
org.springframework.data.neo4j.repository.query.VariableContext.class
org.springframework.data.neo4j.repository.query.WhereClause.class
org.springframework.data.neo4j.repository.RelationshipGraphRepository.class
org.springframework.data.neo4j.repository.RelationshipOperationsRepository.class
org.springframework.data.neo4j.repository.SpatialRepository.class
org.springframework.data.neo4j.repository.TraversalRepository.class
org.springframework.data.neo4j.server.ProvidedClassPathXmlApplicationContext.class
org.springframework.data.neo4j.server.SpringPluginInitializer$SpringBeanInjectable.class
org.springframework.data.neo4j.server.SpringPluginInitializer.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.DelegatingGraphDatabase$FailingQueryEngine.class
org.springframework.data.neo4j.support.DelegatingGraphDatabase.class
org.springframework.data.neo4j.support.DoReturn.class
org.springframework.data.neo4j.support.GenericTypeExtractor.class
org.springframework.data.neo4j.support.GraphDatabaseFactory.class
org.springframework.data.neo4j.support.index.ClosableIndexHits.class
org.springframework.data.neo4j.support.index.EmptyIndexHits.class
org.springframework.data.neo4j.support.index.IndexProvider.class
org.springframework.data.neo4j.support.index.IndexProviderImpl.class
org.springframework.data.neo4j.support.index.IndexType$1.class
org.springframework.data.neo4j.support.index.IndexType$2.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.mapping.AbstractConstructorEntityInstantiator$1.class
org.springframework.data.neo4j.support.mapping.AbstractConstructorEntityInstantiator$2.class
org.springframework.data.neo4j.support.mapping.AbstractConstructorEntityInstantiator$3.class
org.springframework.data.neo4j.support.mapping.AbstractConstructorEntityInstantiator$4.class
org.springframework.data.neo4j.support.mapping.AbstractConstructorEntityInstantiator.class
org.springframework.data.neo4j.support.mapping.EntityCreatingClosableIterable.class
org.springframework.data.neo4j.support.mapping.EntityRemover.class
org.springframework.data.neo4j.support.mapping.EntityStateHandler.class
org.springframework.data.neo4j.support.mapping.EntityTools.class
org.springframework.data.neo4j.support.mapping.Neo4jEntityConverterImpl$1.class
org.springframework.data.neo4j.support.mapping.Neo4jEntityConverterImpl.class
org.springframework.data.neo4j.support.mapping.Neo4jEntityFetchHandler.class
org.springframework.data.neo4j.support.mapping.Neo4jEntityPersister$CachedConverter.class
org.springframework.data.neo4j.support.mapping.Neo4jEntityPersister$CachedInstantiator.class
org.springframework.data.neo4j.support.mapping.Neo4jEntityPersister$StackedEntityCache$1.class
org.springframework.data.neo4j.support.mapping.Neo4jEntityPersister$StackedEntityCache$Entry.class
org.springframework.data.neo4j.support.mapping.Neo4jEntityPersister$StackedEntityCache.class
org.springframework.data.neo4j.support.mapping.Neo4jEntityPersister.class
org.springframework.data.neo4j.support.mapping.Neo4jMappingContext.class
org.springframework.data.neo4j.support.mapping.Neo4jPersistentEntityImpl.class
org.springframework.data.neo4j.support.mapping.Neo4jPersistentPropertyImpl.class
org.springframework.data.neo4j.support.mapping.SourceStateTransmitter$1.class
org.springframework.data.neo4j.support.mapping.SourceStateTransmitter$2.class
org.springframework.data.neo4j.support.mapping.SourceStateTransmitter$3.class
org.springframework.data.neo4j.support.mapping.SourceStateTransmitter$4.class
org.springframework.data.neo4j.support.mapping.SourceStateTransmitter.class
org.springframework.data.neo4j.support.mapping.TRSTypeAliasAccessor.class
org.springframework.data.neo4j.support.MappingInfrastructure.class
org.springframework.data.neo4j.support.Neo4jExceptionTranslator.class
org.springframework.data.neo4j.support.Neo4jTemplate$1.class
org.springframework.data.neo4j.support.Neo4jTemplate$2.class
org.springframework.data.neo4j.support.Neo4jTemplate$3.class
org.springframework.data.neo4j.support.Neo4jTemplate.class
org.springframework.data.neo4j.support.node.EntityStateFactory.class
org.springframework.data.neo4j.support.node.Neo4jHelper.class
org.springframework.data.neo4j.support.node.NodeEntityInstantiator.class
org.springframework.data.neo4j.support.node.NodeEntityState.class
org.springframework.data.neo4j.support.node.NodeEntityStateFactory.class
org.springframework.data.neo4j.support.ParameterCheck.class
org.springframework.data.neo4j.support.path.ConvertingEntityPath$1.class
org.springframework.data.neo4j.support.path.ConvertingEntityPath$2.class
org.springframework.data.neo4j.support.path.ConvertingEntityPath$3.class
org.springframework.data.neo4j.support.path.ConvertingEntityPath.class
org.springframework.data.neo4j.support.path.DefaultRelationshipBacked.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所有版本文件
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所有版本文件
|