次のユース ケースがあります。異なるマシンにあるデータベース A (マスター) とデータベース B (スレーブ)。データベース A とデータベース B を同期させたい。組み込みの SymmetricDS を使用して Java アプリケーションを作成したい。これを実行する方法に関するドキュメントがないため、サンプルの例またはドキュメントが必要です。困っている私を助けてください。
質問する
1849 次
2 に答える
3
これは、Symmetric エンジン サーバーを組み込みモードで実行する方法の例であり、私にとっては完璧に機能します。
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("client", "001");// client is the name of the node group and 001 is the ID
getcEngine().setup();
getcEngine().start();
}
public ClientSymmetricEngine getcEngine() {
return cEngine;
}
public void setcEngine(ClientSymmetricEngine cEngine) {
this.cEngine = cEngine;
}
}
メインクラス:
public static void main(String[] args) {
try {
new ClientNode(new File("client.properties"));
SymmetricWebServer node = new SymmetricWebServer("master.properties");
node.setWebAppDir("Web");
node.setJoin(false);
node.start();
// this will stop the node
//node.stop();
}catch (Exception e) {
e.printStackTrace();
}
}
プロパティ ファイル:
client.properties :
external.id=001
engine.name=client-001
sync.url=http\://localhost\:31415/sync/client-001
group.id=client
db.url=jdbc\:mysql\://localhost/easyexchangedb_slave
db.driver=com.mysql.jdbc.Driver
db.user=root
registration.url=http\://localhost\:31415/sync/server
db.password=
master.properties :
external.id=server
engine.name=server
sync.url=http\://localhost\:31415/sync/server
group.id=server
db.url=jdbc\:mysql\://localhost/easyexchangedb_master
db.driver=com.mysql.jdbc.Driver
db.user=root
registration.url=http\://localhost\:31415/sync/server
db.password=
auto.registration=true
于 2015-09-02T10:44:48.003 に答える
0
ドキュメントには、Java SE アプリケーションへの symmetricDs エンジンの埋め込みに関するセクションがあります: http://www.symmetricds.org/doc/3.6/user-guide/html-single/user-guide.html#deployment-options-embedded
于 2015-08-31T09:38:14.997 に答える