spring data neo4j Embedded:连接到localhost:7474失败:连接被拒绝

时间:2015-12-13 19:01:38

标签: spring-boot spring-data-neo4j

具有以下配置:

@Configuration
@EnableNeo4jRepositories("com.mydb.repository")
@EnableTransactionManagement
public class Neo4jConfig extends Neo4jConfiguration {
    @Bean
    @Override
    public Neo4jServer neo4jServer() {
        return new RemoteServer( "http://localhost:7474" );
    }       
    @Bean
    public GraphDatabaseService graphDatabaseService() {

        return new GraphDatabaseFactory().newEmbeddedDatabaseBuilder( new File("./mydb.db") )
                .setConfig( ServerSettings.auth_enabled, Boolean.FALSE.toString() )             
                .newGraphDatabase();

    }    
    @Bean
    @Override
    @Scope(proxyMode = ScopedProxyMode.TARGET_CLASS)
    public Session getSession() throws Exception {
        return super.getSession();
    }        
    @Bean
    @Override
    public SessionFactory getSessionFactory() {
        return new SessionFactory("com.mydb.model");
    }    
}

我有两个错误:

1_我无法将会话保持在范围内"会话"

2_我有例外:连接到localhost:7474失败:连接被拒绝:

服务器是嵌入式的,它应该在没有安装本地机器上的任何服务器的情况下启动?

Spring-boot 1.3.0 (Last) and 
<dependency>
        <groupId>org.neo4j</groupId>
        <artifactId>neo4j</artifactId>
        <version>2.3.1</version>
</dependency>
<dependency>
        <groupId>org.springframework.data</groupId>
        <artifactId>spring-data-neo4j</artifactId>
        <version>4.0.0.RELEASE</version>
</dependency>

1 个答案:

答案 0 :(得分:3)

Neo4j的Spring Data 4.0版本不支持Neo4j的嵌入式版本。

您需要在本地计算机上安装Neo4j。

&#34; SDN 4.1将支持嵌入式版本。&#34; @Luanne