将Openfire服务器集成(嵌入)到另一个Java项目中

将Openfire服务器集成(嵌入)到另一个Java项目中,java,eclipse,git,ant,xmpp,Java,Eclipse,Git,Ant,Xmpp,我从Git Repository()克隆了Openfire源代码,将其安装到Eclipse中,并对其进行了Ant构建。 Openfire使用我喜欢的自定义配置运行,并连接到MySQL数据库,该数据库存储用户、密码。。。从Eclipse启动服务器工作正常 我的目标是从另一个Java项目(在我的例子中是JavaFX)启动Openfire“隐形”。如果可能的话,我想把两个项目合并成一个 构建Openfire项目被添加到我的JavaFX应用程序的类路径中 1) 首先,我尝试用 public void i

我从Git Repository()克隆了Openfire源代码,将其安装到Eclipse中,并对其进行了Ant构建。 Openfire使用我喜欢的自定义配置运行,并连接到MySQL数据库,该数据库存储用户、密码。。。从Eclipse启动服务器工作正常

我的目标是从另一个Java项目(在我的例子中是JavaFX)启动Openfire“隐形”。如果可能的话,我想把两个项目合并成一个

构建Openfire项目被添加到我的JavaFX应用程序的类路径中

1) 首先,我尝试用

public void initialize(URL url, ResourceBundle rb) {

    initListener();
    initContents();

    org.jivesoftware.openfire.starter.ServerStarter.main(null); 

    ...

}
与预期一样,VM参数丢失:

SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Found binding in [jar:file:/C:/Users/knoop/Desktop/java/slf4j-1.7.13/slf4j-jdk14-1.7.13.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: Found binding in [jar:file:/C:/Users/knoop/Desktop/java/Openfire_git/build/lib/ant/slf4j-simple.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: Found binding in [jar:file:/C:/Users/knoop/Desktop/java/Openfire_git/build/lib/dist/slf4j-log4j12.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation.
SLF4J: Actual binding is of type [org.slf4j.impl.JDK14LoggerFactory]
Jan 27, 2016 5:52:28 PM org.jivesoftware.util.Log warn
WARNUNG: Admin Lib Directory ../plugins/admin/webapp/WEB-INF/lib does not exist. Web admin console may not work.
Could not locate home
java.io.FileNotFoundException
    at org.jivesoftware.openfire.XMPPServer.locateOpenfire(XMPPServer.java:827)
    at org.jivesoftware.openfire.XMPPServer.initialize(XMPPServer.java:304)
    at org.jivesoftware.openfire.XMPPServer.start(XMPPServer.java:440)
    at org.jivesoftware.openfire.XMPPServer.<init>(XMPPServer.java:169)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
    at java.lang.reflect.Constructor.newInstance(Unknown Source)
    at java.lang.Class.newInstance(Unknown Source)
    at org.jivesoftware.openfire.starter.ServerStarter.start(ServerStarter.java:105)
    at org.jivesoftware.openfire.starter.ServerStarter.main(ServerStarter.java:56)
    at org.server_fx.GUI.controller.MainScreenController.initialize(MainScreenController.java:53)
    at javafx.fxml.FXMLLoader.loadImpl(Unknown Source)
    at javafx.fxml.FXMLLoader.loadImpl(Unknown Source)
    at javafx.fxml.FXMLLoader.load(Unknown Source)
    at org.server_fx.GUI.controller.GUI_Shared.loadFXMLToStage(GUI_Shared.java:63)
    at org.server_fx.GUI.fxml.Manager.start(Manager.java:24)
    at com.sun.javafx.application.LauncherImpl.lambda$launchApplication1$163(Unknown Source)
    at com.sun.javafx.application.PlatformImpl.lambda$runAndWait$176(Unknown Source)
    at com.sun.javafx.application.PlatformImpl.lambda$null$174(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sun.javafx.application.PlatformImpl.lambda$runLater$175(Unknown Source)
    at com.sun.glass.ui.InvokeLaterDispatcher$Future.run(Unknown Source)
    at com.sun.glass.ui.win.WinApplication._runLoop(Native Method)
    at com.sun.glass.ui.win.WinApplication.lambda$null$149(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
Jan 27, 2016 5:52:28 PM org.jivesoftware.openfire.XMPPServer start
SCHWERWIEGEND: null
java.io.FileNotFoundException
    at org.jivesoftware.openfire.XMPPServer.locateOpenfire(XMPPServer.java:827)
    at org.jivesoftware.openfire.XMPPServer.initialize(XMPPServer.java:304)
    at org.jivesoftware.openfire.XMPPServer.start(XMPPServer.java:440)
    at org.jivesoftware.openfire.XMPPServer.<init>(XMPPServer.java:169)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
    at java.lang.reflect.Constructor.newInstance(Unknown Source)
    at java.lang.Class.newInstance(Unknown Source)
    at org.jivesoftware.openfire.starter.ServerStarter.start(ServerStarter.java:105)
    at org.jivesoftware.openfire.starter.ServerStarter.main(ServerStarter.java:56)
    at org.server_fx.GUI.controller.MainScreenController.initialize(MainScreenController.java:53)
    at javafx.fxml.FXMLLoader.loadImpl(Unknown Source)
    at javafx.fxml.FXMLLoader.loadImpl(Unknown Source)
    at javafx.fxml.FXMLLoader.load(Unknown Source)
    at org.server_fx.GUI.controller.GUI_Shared.loadFXMLToStage(GUI_Shared.java:63)
    at org.server_fx.GUI.fxml.Manager.start(Manager.java:24)
    at com.sun.javafx.application.LauncherImpl.lambda$launchApplication1$163(Unknown Source)
    at com.sun.javafx.application.PlatformImpl.lambda$runAndWait$176(Unknown Source)
    at com.sun.javafx.application.PlatformImpl.lambda$null$174(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sun.javafx.application.PlatformImpl.lambda$runLater$175(Unknown Source)
    at com.sun.glass.ui.InvokeLaterDispatcher$Future.run(Unknown Source)
    at com.sun.glass.ui.win.WinApplication._runLoop(Native Method)
    at com.sun.glass.ui.win.WinApplication.lambda$null$149(Unknown Source)
    at java.lang.Thread.run(Unknown Source)

Jan 27, 2016 5:52:28 PM org.jivesoftware.util.LocaleUtils getLocalizedString
SCHWERWIEGEND: Can't find bundle for base name openfire_i18n, locale de_DE
Critical Error! The home directory has not been configured, 
which will prevent the application from working correctly.

startup.error
结果一事无成。也不例外

有没有其他方法可以从另一个Java项目实例化OpenFire服务器,或者使用正确的启动参数在后台“不可见地”启动服务器?

好,现在可以了

JavaFX初始化:

    private void initContents() {

        System.setProperty("openfireHome", "C:/Users/knoop/Desktop/java/workspace/Openfire/target/openfire");
        System.setProperty("openfire.lib.dir", "C:/Users/knoop/Desktop/java/workspace/Openfire/target/openfire/lib");

        org.jivesoftware.openfire.starter.ServerStarter.main(null);

    }
好的,现在可以了

JavaFX初始化:

    private void initContents() {

        System.setProperty("openfireHome", "C:/Users/knoop/Desktop/java/workspace/Openfire/target/openfire");
        System.setProperty("openfire.lib.dir", "C:/Users/knoop/Desktop/java/workspace/Openfire/target/openfire/lib");

        org.jivesoftware.openfire.starter.ServerStarter.main(null);

    }