将Openfire-Server集成(嵌入)到另一个Java项目中

时间:2016-01-27 17:22:47

标签: java eclipse git ant xmpp

我从Git-Repository(https://github.com/igniterealtime/Openfire)克隆了Openfire-Source,将其设置为Eclipse并对其进行了Ant-Build。 Openfire使用我喜欢的自定义配置运行,并连接到MySQL-Database,它存储用户,密码......从Eclipse启动服务器工作正常。

我的目标是从另一个Java-Project(在我的案例中为JavaFX)启动Openfire“隐形”。如果可能,我想将两个项目合并为一个。

构建的Openfire项目已添加到我的JavaFX-Application的类路径中。

1)首先,我尝试使用

在我现有的JavaFX-Stage-Controller中实例化Openfires Startup.jar
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

导致缺少Openfire-home-directory。

2)Openfire.bat包含启动服务器的特定参数(DopenfireHome =“%OPENFIRE_HOME%”)。

所以我试过了:

public void initialize(URL url, ResourceBundle rb) {

    initListener();
    initContents();

    try {

        Process proc = Runtime.getRuntime().exec("java" -DopenfireHome=\"C:\\Users\\knoop\\Desktop\\java\\Openfire_git\\target\\openfire\" -jar C:\\Users\\knoop\\Desktop\\java\\Openfire_git\\target\\openfire\lib\startup.jar");

    } catch (IOException e) {   e.printStackTrace();    }

    ...

}

没有任何结果。也不例外。

是否有另一种方法可以从另一个Java-Project实例化OpenFire服务器,或者“无形地”在后台使用正确的启动参数启动服务器?

1 个答案:

答案 0 :(得分:0)

好的,现在有效。

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);

    }