目前我有这门课。当我删除 QueryResult 它运行主要方法并自行完成。当我添加 QueryResult 时,我需要手动终止运行。我怎样才能使它优雅地结束?谢谢。
public class TestConnect {
public static void main(String[] args) {
System.out.println("starting test");
final RestAPI api = new RestAPIFacade("http://localhost:7474/db/data");
System.out.println("API created");
final RestCypherQueryEngine engine = new RestCypherQueryEngine(api);
System.out.println("engine created");
QueryResult<Map<String,Object>> result = engine.query("start n=node({id}) return n;", map("id",0));
}
}
编辑:我正在使用 Java 7。