3

我正在尝试将Symmetricds 3.7 嵌入到使用 H2 数据库的 java 应用程序中。该应用程序是一个客户端节点并使用ClientSymmetricEngine来自 SymmetricDS API 的类。

主节点运行独立的对称服务器,当我使用应用程序中先前测试中已经配置的数据库时,我能够同步数据。

在新数据库上运行应用程序时,它会引发以下异常:

java.lang.IllegalStateException: This node has not been configured.Could not find a row in the identity table
at 
org.jumpmind.symmetric.service.impl.RegistrationService.openRegistration(RegistrationService.java:562)
at 
org.jumpmind.symmetric.service.impl.RegistrationService.openRegistration(RegistrationService.java:530)
at 
org.jumpmind.symmetric.service.impl.RegistrationService.openRegistration(RegistrationService.java:519)
at 
org.jumpmind.symmetric.AbstractSymmetricEngine.openRegistration(AbstractSymmetricEngine.java:890)
at syncdemo.ClientNode.<init>(ClientNode.java:32)
at syncdemo.SyncDemo.main(SyncDemo.java:37)

如何通过 API 在客户端节点中创建 SYM 表?

我从这里获得了同步代码。在 ClientNode 类中使用如下:

public class ClientNode {
private ClientSymmetricEngine cEngine;
private File propFile;


public ClientNode(File file) throws FileNotFoundException, IOException {
    propFile = file;
    Properties propertiesFile = new Properties();
    propertiesFile.load(new FileReader(propFile));
    cEngine = new ClientSymmetricEngine(propertiesFile, true);
    getcEngine().openRegistration("store", "001");
    getcEngine().setup();
    getcEngine().start();
}

public ClientSymmetricEngine getcEngine() {
    return cEngine;
}

public void setcEngine(ClientSymmetricEngine cEngine) {
    this.cEngine = cEngine;
}
}

从这里调用 clientNode 类:

public class SyncDemo {       

public static void main(String[] args) {

      try 
        {
        new ClientNode(new File("/client.properties"));
        }
        catch (Exception e) 
        {
        e.printStackTrace();
        }

}
}

client.properties 文件的内容:

external.id=001
engine.name=store-001
sync.url=http://192.168.1.107:31415/sync/corp-000
group.id=store
db.url=jdbc:h2:./syncdata/store001;AUTO_SERVER=TRUE;LOCK_TIMEOUT=60000
db.driver=org.h2.Driver
db.user=symmetric
registration.url=http://192.168.1.107:31415/sync/corp-000
db.password=
auto.config.database=true  

我刚刚注意到,即使客户端节点的数据库中存在 SYM 表,也会引发相同的异常,除非在 SYM_NODE 和 SYM_NODE_IDENTITY 表中插入适当的数据。

4

2 回答 2

1

通过修改代码解决了这个问题:

public ClientNode(File file) throws FileNotFoundException, IOException {
propFile = file;
Properties propertiesFile = new Properties();
propertiesFile.load(new FileReader(propFile));
cEngine = new ClientSymmetricEngine(propertiesFile, true);
getcEngine().setup();
getcEngine().openRegistration("store", "001");
getcEngine().start();
}

我认为 setup() 函数在数据库中创建配置表,需要在注册前调用。

于 2015-12-08T06:25:56.933 回答
0

接受的答案对我不起作用,我仍然遇到同样的错误。我结合了已接受答案的变化以及理解:

  1. 每个客户端节点上的 sync.url在注册时来自服务器。
  2. registration.url 告诉客户端节点在哪里可以找到配置(主)节点。
  3. 如果您过去曾经搞砸过其中任何一个,那么您的 sym_ 表中的某些内容就会被搞砸。您最好清除数据库并重新开始。
  4. sym_ 表不会在嵌入式应用程序中为您自动填充。您必须手动填充它们。 .../samples/insert_sample.sql文件是您的朋友。
于 2017-02-22T05:31:51.460 回答