0

neo4jバージョン1.8.1spring-data-neo4jバージョンを使用しています2.2.0. RELEASE

これが私の春のneo4j構成です。

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:neo4j="http://www.springframework.org/schema/data/neo4j"
       xmlns:tx="http://www.springframework.org/schema/tx"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
        http://www.springframework.org/schema/data/neo4j http://www.springframework.org/schema/data/neo4j/spring-neo4j.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd">

    <context:spring-configured/>
    <context:annotation-config/>

    <neo4j:config storeDirectory="target/neo4j-db"/>
    <neo4j:repositories base-package="net.myPackage.core"/>

    <tx:annotation-driven mode="aspectj"/>
</beans>

Spring コンテキスト (target/neo4j-db) で指定された場所にあるデータベースが破棄され、再度作成されます。したがって、これは生産上の問題です。この問題により、デプロイのたびに製品データが neo4j から削除されます。

どうすればこれを修正できますか? 春のコンテキストで設定できるこれをチェックしているステータスはありますか?

4

1 に答える 1

2

多分問題storeDirectory?開発用 IDE によって削除されたのではないでしょうか? ストア ディレクトリをターゲット フォルダの外に移動してみてください。

于 2013-08-06T14:59:53.593 に答える