我正在使用neo4j
版本1.8.1
和spring-data-neo4j
版本2.2.0. RELEASE
这是我的 spring 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)中给出的位置中的 db 正在被销毁并再次创建。所以这是生产上的问题。由于这个问题,每次部署时,都会从 neo4j 中删除产品数据。
我怎样才能解决这个问题?是否有一个正在检查的状态,我可以在 spring 上下文中设置?