java - Maven 配置文件 JxBrowser 中其他依赖项内的依赖项

标签 java maven jxbrowser

我在我的 Java 项目中使用了 Maven 配置文件。

我使用 pom.xml 创建了 web-processing-jxbrowser 模块包含三个配置文件:linux-deploy、mac-deploy 和 windows-deploy。

当依赖于一个库(内部没有依赖项)时,它对我有用,但在 jxbrowser 的情况下,它看起来不同(不起作用)。

<profiles>

    <profile>
        <id>windows-deploy</id>

        <dependencies>
            <dependency>
                <groupId>com.teamdev.jxbrowser</groupId>
                <artifactId>jxbrowser-win</artifactId>
                <version>${jxbrowser.version}</version>
            </dependency>
        </dependencies>
    </profile>

    <profile>
        <id>mac-deploy</id>

        <dependencies>
            <dependency>
                <groupId>com.teamdev.jxbrowser</groupId>
                <artifactId>jxbrowser-mac</artifactId>
                <version>${jxbrowser.version}</version>
            </dependency>
        </dependencies>
    </profile>

    <profile>
        <id>linux-deploy</id>

        <dependencies>
            <dependency>
                <groupId>com.teamdev.jxbrowser</groupId>
                <artifactId>jxbrowser-linux64</artifactId>
                <version>${jxbrowser.version}</version>
            </dependency>
        </dependencies>
    </profile>

</profiles>

例如,当我查看 mac-deploy 时 jxbrowser-mac它进入了其他依赖项 - 主要的 jxbrowser lib,它看起来像这样:

<?xml version="1.0" ?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.teamdev.jxbrowser</groupId>
    <artifactId>jxbrowser-mac</artifactId>
    <version>6.12</version>
    <dependencies>
        <dependency>
            <groupId>com.teamdev.jxbrowser</groupId>
            <artifactId>jxbrowser</artifactId>
            <version>6.12</version>
        </dependency>
    </dependencies>
</project>

我还设置了存储库来下载正确的库:

<repositories>
    <repository>
        <id>com.teamdev</id>
        <url>http://maven.teamdev.com/repository/products</url>
    </repository>
</repositories>

...并在编译时下载正确的库(我在外部库中看到它们)。

<dependencies>...</dependencies> 中正确添加了许可证依赖项看起来像这样:

<dependency>
    <groupId>license</groupId>
    <artifactId>license</artifactId>
    <version>${jxbrowser.version}</version>
    <scope>system</scope>
    <systemPath>${basedir}/resources/libs/license.jar</systemPath>
</dependency>

它编译得很好,但是当我尝试运行应用程序时,它找不到主jxbrowser库。

我找到了临时解决方案,将此库依赖项添加到 <dependencies>...</dependencies>如下:

<dependencies>

    <dependency>
        <groupId>license</groupId>
        <artifactId>license</artifactId>
        <version>${jxbrowser.version}</version>
        <scope>system</scope>
        <systemPath>${basedir}/resources/libs/license.jar</systemPath>
    </dependency>

    <dependency>
        <groupId>com.teamdev.jxbrowser</groupId>
        <artifactId>jxbrowser-win</artifactId>
        <version>${jxbrowser.version}</version>
    </dependency>

    <dependency>
        <groupId>com.teamdev.jxbrowser</groupId>
        <artifactId>jxbrowser-mac</artifactId>
        <version>${jxbrowser.version}</version>
    </dependency>

    <dependency>
        <groupId>com.teamdev.jxbrowser</groupId>
        <artifactId>jxbrowser-linux64</artifactId>
        <version>${jxbrowser.version}</version>
    </dependency>

</dependencies>

...但是当我在当前平台上需要其中一个库时,我不想下载所有库。

编译成功后(jxbrowser运行正确)但有一个问题:

为什么当通过配置文件键入依赖项时,库没有很好地包含在内?

当我在其他模块中使用相同的设置时 - 它有效(因为这里是一个库的依赖项 - 而不是内部包含其他依赖项的库)

我认为其他依赖项内部的依赖项存在一些问题(作为对 jxbrower 依赖项内 jxbrowser-mac lib 的依赖项)

运行应用程序时出错:

java.lang.NoClassDefFoundError: com/teamdev/jxbrowser/chromium/swing/BrowserView
    at com.goodsoft.stockbox.jxbrowser.JxBrowser.initAndDisplayUI(JxBrowser.java:34)
    at com.goodsoft.stockbox.market.view.window.StockBoxWindowController.lambda$createMenuWindow$17(StockBoxWindowController.java:211)
    at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:2022)
    at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2348)
    at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:402)
    at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:259)
    at javax.swing.AbstractButton.doClick(AbstractButton.java:376)
    at javax.swing.plaf.basic.BasicMenuItemUI.doClick(BasicMenuItemUI.java:833)
    at javax.swing.plaf.basic.BasicMenuItemUI$Handler.mouseReleased(BasicMenuItemUI.java:877)
    at java.awt.Component.processMouseEvent(Component.java:6535)
    at javax.swing.JComponent.processMouseEvent(JComponent.java:3324)
    at java.awt.Component.processEvent(Component.java:6300)
    at java.awt.Container.processEvent(Container.java:2236)
    at java.awt.Component.dispatchEventImpl(Component.java:4891)
    at java.awt.Container.dispatchEventImpl(Container.java:2294)
    at java.awt.Component.dispatchEvent(Component.java:4713)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4888)
    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4525)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4466)
    at java.awt.Container.dispatchEventImpl(Container.java:2280)
    at java.awt.Window.dispatchEventImpl(Window.java:2750)
    at java.awt.Component.dispatchEvent(Component.java:4713)
    at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:758)
    at java.awt.EventQueue.access$500(EventQueue.java:97)
    at java.awt.EventQueue$3.run(EventQueue.java:709)
    at java.awt.EventQueue$3.run(EventQueue.java:703)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:76)
    at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:86)
    at java.awt.EventQueue$4.run(EventQueue.java:731)
    at java.awt.EventQueue$4.run(EventQueue.java:729)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:76)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:728)
    at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:201)
    at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:116)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:105)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:82)
Caused by: java.lang.ClassNotFoundException: com.teamdev.jxbrowser.chromium.swing.BrowserView
    at java.net.URLClassLoader.findClass(URLClassLoader.java:381)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:331)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
    ... 40 more

编辑

当我添加到<dependencies>...</dependencies>时对 main jxbrowser 的依赖lib 我收到错误,找不到 Mac 的资源:

12:03:25 SEVERE: The /chromium-mac.xz resource cannot be found in JAR files
java.lang.ClassNotFoundException: com.teamdev.jxbrowser.chromium.internal.res.IDEAJARAnalyzerFixMac
    at java.net.URLClassLoader.findClass(URLClassLoader.java:381)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:331)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:264)
    at com.teamdev.jxbrowser.chromium.internal.v.a(SourceFile:94)
    at com.teamdev.jxbrowser.chromium.internal.v.a(SourceFile:33)
    at com.teamdev.jxbrowser.chromium.internal.b.run(SourceFile:1054)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.teamdev.jxbrowser.chromium.internal.ChromiumExtractor.extract(SourceFile:47)
    at com.teamdev.jxbrowser.chromium.internal.ipc.IPC.<init>(SourceFile:1096)
    at com.teamdev.jxbrowser.chromium.internal.ipc.IPC.create(SourceFile:49)
    at com.teamdev.jxbrowser.chromium.internal.ipc.IPC$a.<clinit>(SourceFile:39)
    at com.teamdev.jxbrowser.chromium.internal.ipc.IPC.getDefault(SourceFile:43)
    at com.teamdev.jxbrowser.chromium.BrowserContext.<init>(SourceFile:63)
    at com.teamdev.jxbrowser.chromium.BrowserContext.<clinit>(SourceFile:25)
    at com.teamdev.jxbrowser.chromium.Browser.<init>(SourceFile:131)
    at com.goodsoft.stockbox.jxbrowser.TabFactory.createTab(TabFactory.java:27)
    at com.goodsoft.stockbox.jxbrowser.TabFactory.createFirstTab(TabFactory.java:19)
    at com.goodsoft.stockbox.jxbrowser.JxBrowser.initAndDisplayUI(JxBrowser.java:34)
    at com.goodsoft.stockbox.market.view.window.StockBoxWindowController.lambda$createMenuWindow$17(StockBoxWindowController.java:211)
    at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:2022)
    at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2348)
    at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:402)
    at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:259)
    at javax.swing.AbstractButton.doClick(AbstractButton.java:376)
    at javax.swing.plaf.basic.BasicMenuItemUI.doClick(BasicMenuItemUI.java:833)
    at javax.swing.plaf.basic.BasicMenuItemUI$Handler.mouseReleased(BasicMenuItemUI.java:877)
    at java.awt.Component.processMouseEvent(Component.java:6535)
    at javax.swing.JComponent.processMouseEvent(JComponent.java:3324)
    at java.awt.Component.processEvent(Component.java:6300)
    at java.awt.Container.processEvent(Container.java:2236)
    at java.awt.Component.dispatchEventImpl(Component.java:4891)
    at java.awt.Container.dispatchEventImpl(Container.java:2294)
    at java.awt.Component.dispatchEvent(Component.java:4713)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4888)
    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4525)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4466)
    at java.awt.Container.dispatchEventImpl(Container.java:2280)
    at java.awt.Window.dispatchEventImpl(Window.java:2750)
    at java.awt.Component.dispatchEvent(Component.java:4713)
    at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:758)
    at java.awt.EventQueue.access$500(EventQueue.java:97)
    at java.awt.EventQueue$3.run(EventQueue.java:709)
    at java.awt.EventQueue$3.run(EventQueue.java:703)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:76)
    at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:86)
    at java.awt.EventQueue$4.run(EventQueue.java:731)
    at java.awt.EventQueue$4.run(EventQueue.java:729)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:76)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:728)
    at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:201)
    at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:116)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:105)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:82)

12253 [AWT-EventQueue-0] ERROR root  -  [APP] Application error
java.lang.ExceptionInInitializerError
    at com.teamdev.jxbrowser.chromium.internal.ipc.IPC.getDefault(SourceFile:43)
    at com.teamdev.jxbrowser.chromium.BrowserContext.<init>(SourceFile:63)
    at com.teamdev.jxbrowser.chromium.BrowserContext.<clinit>(SourceFile:25)
    at com.teamdev.jxbrowser.chromium.Browser.<init>(SourceFile:131)
    at com.goodsoft.stockbox.jxbrowser.TabFactory.createTab(TabFactory.java:27)
    at com.goodsoft.stockbox.jxbrowser.TabFactory.createFirstTab(TabFactory.java:19)
    at com.goodsoft.stockbox.jxbrowser.JxBrowser.initAndDisplayUI(JxBrowser.java:34)
    at com.goodsoft.stockbox.market.view.window.StockBoxWindowController.lambda$createMenuWindow$17(StockBoxWindowController.java:211)
    at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:2022)
    at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2348)
    at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:402)
    at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:259)
    at javax.swing.AbstractButton.doClick(AbstractButton.java:376)
    at javax.swing.plaf.basic.BasicMenuItemUI.doClick(BasicMenuItemUI.java:833)
    at javax.swing.plaf.basic.BasicMenuItemUI$Handler.mouseReleased(BasicMenuItemUI.java:877)
    at java.awt.Component.processMouseEvent(Component.java:6535)
    at javax.swing.JComponent.processMouseEvent(JComponent.java:3324)
    at java.awt.Component.processEvent(Component.java:6300)
    at java.awt.Container.processEvent(Container.java:2236)
    at java.awt.Component.dispatchEventImpl(Component.java:4891)
    at java.awt.Container.dispatchEventImpl(Container.java:2294)
    at java.awt.Component.dispatchEvent(Component.java:4713)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4888)
    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4525)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4466)
    at java.awt.Container.dispatchEventImpl(Container.java:2280)
    at java.awt.Window.dispatchEventImpl(Window.java:2750)
    at java.awt.Component.dispatchEvent(Component.java:4713)
    at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:758)
    at java.awt.EventQueue.access$500(EventQueue.java:97)
    at java.awt.EventQueue$3.run(EventQueue.java:709)
    at java.awt.EventQueue$3.run(EventQueue.java:703)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:76)
    at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:86)
    at java.awt.EventQueue$4.run(EventQueue.java:731)
    at java.awt.EventQueue$4.run(EventQueue.java:729)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:76)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:728)
    at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:201)
    at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:116)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:105)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:82)
Caused by: com.teamdev.jxbrowser.chromium.internal.ChromiumExtractorException: Failed to extract chromium binaries into /var/folders/51/jhnyhq212kz_nkn_0wq5j8000000gn/T/jxbrowser-chromium-55.0.2883.87.6.12
    at com.teamdev.jxbrowser.chromium.internal.ChromiumExtractor.extract(SourceFile:75)
    at com.teamdev.jxbrowser.chromium.internal.ipc.IPC.<init>(SourceFile:1096)
    at com.teamdev.jxbrowser.chromium.internal.ipc.IPC.create(SourceFile:49)
    at com.teamdev.jxbrowser.chromium.internal.ipc.IPC$a.<clinit>(SourceFile:39)
    ... 46 more
Caused by: java.lang.IllegalArgumentException: The /chromium-mac.xz resource cannot be found in JAR files
    at com.teamdev.jxbrowser.chromium.internal.v.a(SourceFile:105)
    at com.teamdev.jxbrowser.chromium.internal.v.a(SourceFile:33)
    at com.teamdev.jxbrowser.chromium.internal.b.run(SourceFile:1054)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.teamdev.jxbrowser.chromium.internal.ChromiumExtractor.extract(SourceFile:47)
    ... 49 more

最佳答案

您必须在您的pom中显式添加此依赖项(无论配置文件如何):

   <dependency>
        <groupId>com.teamdev.jxbrowser</groupId>
        <artifactId>jxbrowser</artifactId>
        <version>6.12</version>
    </dependency>

从你的问题来看,我不确定你是否正在这样做。

正是这个 jar 包含了 swing 包。每个操作系统的jar包名称如下:com.jxbrowser.chromium.internal.res。

关于java - Maven 配置文件 JxBrowser 中其他依赖项内的依赖项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42021927/

相关文章:

java - Grails:集成测试 Ajax 请求 - xhr

java - 在 Google App Engine 上使用 JPA 加载子实体

java - JxBrowser 占用大量内存

java - 隐藏阶段时 JxBrowser View 消失

java - JxMap 调用 browser.loadURL 时默认文件夹在哪里?

java - 错误 : resource android:attr/preserveIconSpacing is private

java - 让 Sphinx4 使用自定义 .gram 文件识别所有数字

java - TypeNotPresentExceptionProxy

java - 运行 Hadoop Map-Reduce 作业

java - 使用 requiresUnpack 使用 Maven 构建的 Spring Boot JAR 不起作用