gpt4 book ai didi

java - Maven : org. osgi.framework.BundleException:束中 Unresolved 约束

转载 作者:搜寻专家 更新时间:2023-11-01 03:52:00 25 4
gpt4 key购买 nike


我正在处理一个有多个子项目的 maven 项目,在 weasis-core-ui 项目的子项目中,我添加了一些我想在项目中使用的 jar。

我通过在 weasis-core-ui 的 pom.xml 中添加依赖项来做到这一点:以下代码包含依赖项,我正在使用pom.xml

<dependency>
<groupId>javax.xml.rpc</groupId>
<artifactId>javax.xml.rpc</artifactId>
<version>1.0.0</version>
<scope>system</scope>
<systemPath>E:/TestClient/WebContent/WEB-INF/lib/axis.jar</systemPath>
</dependency>
<dependency>
<groupId>Disc</groupId>
<artifactId>Disc-Id</artifactId>
<version>1.0.0</version>
<scope>system</scope>
<systemPath>E:/TestClient/WebContent/WEB-INF/lib/commons-discovery-0.2.jar</systemPath>
</dependency>
<dependency>
<groupId>JXRPC</groupId>
<artifactId>JXRPC-Id</artifactId>
<version>1.0.0</version>
<scope>system</scope>
<systemPath>E:/TestClient/WebContent/WEB-INF/lib/jaxrpc.jar</systemPath>
</dependency>
<dependency>
<groupId>SAAJ</groupId>
<artifactId>SAAJ-Id</artifactId>
<version>1.0.0</version>
<scope>system</scope>
<systemPath>E:/TestClient/WebContent/WEB-INF/lib/saaj.jar</systemPath>
</dependency>
<dependency>
<groupId>WSDL</groupId>
<artifactId>WSDL-Id</artifactId>
<version>1.0.0</version>
<scope>system</scope>
<systemPath>E:/TestClient/WebContent/WEB-INF/lib/wsdl4j.jar</systemPath>
</dependency>
<dependency>
<groupId>LOGGING</groupId>
<artifactId>LOGGING-Id</artifactId>
<version>1.0.0</version>
<scope>system</scope>
<systemPath>E:/TestClient/WebContent/WEB-INF/lib/commons-logging.jar</systemPath>
</dependency>

清理项目,然后进行 Maven 测试,它工作正常。但是当我运行该应用程序时,我遇到了这个异常。

    27.05.2014 15:00:56.086 *INFO* [FelixStartLevel] org.weasis.core.api.internal.Activator Register Codec Plug-in: Sun java imageio
ERROR: Bundle weasis-core-ui [24] Error starting file:C:\Users\Taha-test\.m2\repository/org/weasis/core/weasis-core-ui/2.0.0-SNAPSHOT/weasis-core-ui-2.0.0-SNAPSHOT.jar (org.osgi.framework.BundleException: Unresolved constraint in bundle weasis-core-ui [24]: Unable to resolve 24.0: missing requirement [24.0] osgi.wiring.package; (osgi.wiring.package=javax.xml.rpc))
org.osgi.framework.BundleException: Unresolved constraint in bundle weasis-core-ui [24]: Unable to resolve 24.0: missing requirement [24.0] osgi.wiring.package; (osgi.wiring.package=javax.xml.rpc)
at org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:3984)
at org.apache.felix.framework.Felix.startBundle(Felix.java:2045)
at org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1299)
at org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:304)
at java.lang.Thread.run(Thread.java:662)
27.05.2014 15:00:56.165 *INFO* [FelixStartLevel] org.weasis.core.api.internal.Activator Register Codec Plug-in: dcm4che
org.osgi.framework.BundleException: Unresolved constraint in bundle weasis-dicom-explorer [5]: Unable to resolve 5.0: missing requirement [5.0] osgi.wiring.package; (&(osgi.wiring.package=it.cnr.imaa.essi.lablib.gui.checkboxtree)(version>=2.0.0)(!(version>=3.0.0))) [caused by: Unable to resolve 24.0: missing requirement [24.0] osgi.wiring.package; (osgi.wiring.package=javax.xml.rpc)]
ERROR: Bundle weasis-dicom-explorer [5] Error starting file:C:\Users\Taha-test\.m2\repository/org/weasis/dicom/weasis-dicom-explorer/2.0.0-SNAPSHOT/weasis-dicom-explorer-2.0.0-SNAPSHOT.jar (org.osgi.framework.BundleException: Unresolved constraint in bundle weasis-dicom-explorer [5]: Unable to resolve 5.0: missing requirement [5.0] osgi.wiring.package; (&(osgi.wiring.package=it.cnr.imaa.essi.lablib.gui.checkboxtree)(version>=2.0.0)(!(version>=3.0.0))) [caused by: Unable to resolve 24.0: missing requirement [24.0] osgi.wiring.package; (osgi.wiring.package=javax.xml.rpc)])
at org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:3984)
at org.apache.felix.framework.Felix.startBundle(Felix.java:2045)
at org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1299)
at org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:304)
at java.lang.Thread.run(Thread.java:662)

Cannot not start framework: java.lang.Exception: Main User Interface bundle cannot be started
Weasis cache will be cleaned at next launch.

请告诉我我做错了什么。谢谢

最佳答案

如果我没看错,您是否已将依赖项添加到 weasis-core-ui 并尝试从 weasis-dicom-explorer 访问它?

这通常是可行的,但被认为是不好的做法(因为它要求您导出不受您控制的包)。更好的方法是定义 weasis-core-ui 的接口(interface)以尽可能少地依赖第三方数据类。然而,即使配置正确,它似乎也不起作用,因为 weasis-core-ui 也有布线问题。当一个包没有找到它在其 MANIFEST.MF 文件中声明为依赖项的所有包时,就会发生连接异常。在您的情况下,缺少“javax.xml.rpc”。

现在的事情很乏味。您需要找出为什么 weasis-core-ui 实​​际上需要 javax.xml.rpc。如果事实证明需要这个包的功能实际上没有被您的代码使用,您可以简单地删除 javax.xml.rpc 的导入包指令,一切都应该工作。如果您确实使用了需要这样做的代码,您将需要找到一个导出该包的包或一个包含该包的 jar - 例如 Axis。

现在如何删除导入语句在很大程度上取决于您的 MANIFEST.MF 是如何管理的。如果您手动管理它,您可以简单地删除该行,如果您通过 maven-bundle-plugin 管理它,您需要相应地更改您的 pom 以排除 javax.xml.rpc。

关于java - Maven : org. osgi.framework.BundleException:束中 Unresolved 约束,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23886923/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com