Java Spring数据Neo4j:应用程序异常被回滚异常覆盖

Java Spring数据Neo4j:应用程序异常被回滚异常覆盖,java,spring,neo4j,spring-data-neo4j-4,neo4j-ogm,Java,Spring,Neo4j,Spring Data Neo4j 4,Neo4j Ogm,我有一个很长的事务,当出现异常时,web应用程序仍在工作,但如果我调用一些涉及db(REST远程)的操作,该操作需要很长时间才能失败 INFO [org.springframework.data.neo4j.config.Neo4jConfiguration] Intercepted exception ERROR [org.springframework.transaction.interceptor.TransactionInterceptor] Application exception

我有一个很长的事务,当出现异常时,web应用程序仍在工作,但如果我调用一些涉及db(REST远程)的操作,该操作需要很长时间才能失败

INFO  [org.springframework.data.neo4j.config.Neo4jConfiguration] Intercepted exception
ERROR [org.springframework.transaction.interceptor.TransactionInterceptor] Application exception overridden by rollback exception
当它尝试执行回滚时,它无法完成操作,因为服务器没有响应

public class TransactionManager {
....
    private HttpResponse executeRequest(HttpRequestBase request) {
        ...
        HttpResponse response = httpClient.execute(request); // not respond
你能帮我吗? 谢谢

假设您使用SDN 4。 请升级到使用neo4j ogm 1.1.5-SNAPSHOT并重新测试。 它包含有关此区域的一些修复程序

  <dependency>
        <groupId>org.neo4j</groupId>
        <artifactId>neo4j-ogm</artifactId>
        <version>1.1.5-SNAPSHOT</version>
  </dependency>

org.neo4j
neo4j ogm
1.1.5-快照
你还需要包括

        <repository>
            <id>neo4j-snapshots</id>
            <url>http://m2.neo4j.org/content/repositories/snapshots</url>
            <snapshots>
                <enabled>true</enabled>
            </snapshots>
        </repository>

neo4j快照
http://m2.neo4j.org/content/repositories/snapshots
真的
假设您使用SDN 4。 请升级到使用neo4j ogm 1.1.5-SNAPSHOT并重新测试。 它包含有关此区域的一些修复程序

  <dependency>
        <groupId>org.neo4j</groupId>
        <artifactId>neo4j-ogm</artifactId>
        <version>1.1.5-SNAPSHOT</version>
  </dependency>

org.neo4j
neo4j ogm
1.1.5-快照
你还需要包括

        <repository>
            <id>neo4j-snapshots</id>
            <url>http://m2.neo4j.org/content/repositories/snapshots</url>
            <snapshots>
                <enabled>true</enabled>
            </snapshots>
        </repository>

neo4j快照
http://m2.neo4j.org/content/repositories/snapshots
真的