0
在創建路徑時,我在下面的代碼中收到了NodeExists錯誤。Netflix策展人交易錯誤
CuratorTransaction transaction = curatorFramework.inTransaction();
transaction.create().forPath("/foo")
.and().create().forPath("/foo/123")
.and().create().forPath("/foo")
.and().commit();
因此,它試圖在第一次創建foo後再次創建foo。 有沒有什麼辦法可以在創建路徑時檢查事務的狀態,以便在事務/富創建存在時,它不會再創建。