gpt4 book ai didi

java - 在 apache felix (osgi) 中集成 xero (发票网关)

转载 作者:行者123 更新时间:2023-11-30 05:33:17 25 4
gpt4 key购买 nike

我在 karaf(版本 3.0.3)中有一个包含多个模块的项目,我需要向 Xero API(发票网关)添加一个依赖项 - https://github.com/XeroAPI/Xero-Java

我通过 felix apache 使用 OSGI 实现。在模块中,我将所有依赖项添加到 Xero,这些依赖项位于下面的 pom 中。

Pom.xml

  <dependency>
<groupId>com.github.xeroapi</groupId>
<artifactId>xero-java</artifactId>
<version>${xero-java.version}</version>
</dependency>
<dependency>
<groupId>com.github.xeroapi</groupId>
<artifactId>xeroapi-schemas</artifactId>
<version>${xero-schemas.version}</version>
</dependency>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>${jaxb-api.version}</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-core</artifactId>
<version>${jaxb-core.version}</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<version>${jaxb-impl.version}</version>
</dependency>
<dependency>
<groupId>javax.activation</groupId>
<artifactId>activation</artifactId>
<version>${javax-activation.version}</version>
</dependency>
<dependency>
<groupId>org.threeten</groupId>
<artifactId>threetenbp</artifactId>
<version>${threetenbp.version}</version>
</dependency>

<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
<Import-Package>!com.google.api.client.http,*</Import-Package>
<Embed-Dependency>com.google.api.client.http</Embed-Dependency>
</instructions>
</configuration>
</plugin>

所有实现均已部署和编译,但在运行 karaf 时,我遇到了下一个错误。

日志 Karaf

2019-07-19 15:44:19,812 |错误 | lixDispatchQueue | lixDispatchQueue |功能部署监听器 | 22 - org.apache.karaf.deployer.features - 3.0.3 |无法安装功能 java.lang.Exception:无法在功能 be-invoice-mgmt-0.2-SNAPSHOT 中启动 bundle mvn:com.xtpo.im/im-bll-impl/0.2-SNAPSHOT: bundle com.xtpo 中 Unresolved 约束。 im.im-bll-impl [368]:无法解析 368.0:缺少要求 [368.0] osgi.wiring.package; (osgi.wiring.package=com.google.api.client.http) 在 org.apache.karaf.features.internal.FeaturesServiceImpl.startBundle(FeaturesServiceImpl.java:504)[21:org.apache.karaf.features.core:3.0.3] 在 org.apache.karaf.features.internal.FeaturesServiceImpl.installFeatures(FeaturesServiceImpl.java:459)[21:org.apache.karaf.features.core:3.0.3] 在 Proxya6f8789a_dbdc_4181_b0eb_837248e8cb78.installFeatures(来源未知)[:] 在 Proxycbafeabb_12c9_47e3_94d6_f999d20117fa.installFeatures(来源未知)[:] 在 org.apache.karaf.deployer.features.FeatureDeploymentListener.bundleChanged(FeatureDeploymentListener.java:213)[22:org.apache.karaf.deployer.features:3.0.3] 在 org.apache.felix.framework.util.EventDispatcher.invokeBundleListenerCallback(EventDispatcher.java:868)[org.apache.felix.framework-4.2.1.jar:] 在 org.apache.felix.framework.util.EventDispatcher.fireEventImmediately(EventDispatcher.java:789)[org.apache.felix.framework-4.2.1.jar:] 在 org.apache.felix.framework.util.EventDispatcher.run(EventDispatcher.java:1088)[org.apache.felix.framework-4.2.1.jar:] 在 org.apache.felix.framework.util.EventDispatcher.access$000(EventDispatcher.java:54)[org.apache.felix.framework-4.2.1.jar:] 在 org.apache.felix.framework.util.EventDispatcher$1.run(EventDispatcher.java:101)[org.apache.felix.framework-4.2.1.jar:] 在 java.lang.Thread.run(Thread.java:748)[:1.8.0_211] 导致:org.osgi.framework.BundleException: bundle com.xtpo.im.im-bll-impl 中 Unresolved 约束 [368]:无法解析 368.0:缺少要求 [368.0] osgi.wiring.package; (osgi.wiring.package=com.google.api.client.http) 在 org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:3974)[org.apache.felix.framework-4.2.1.jar:] 在 org.apache.felix.framework.Felix.startBundle(Felix.java:2037)[org.apache.felix.framework-4.2.1.jar:] 在 org.apache.felix.framework.BundleImpl.start(BundleImpl.java:955)[org.apache.felix.framework-4.2.1.jar:] 在 org.apache.felix.framework.BundleImpl.start(BundleImpl.java:942)[org.apache.felix.framework-4.2.1.jar:] 在 org.apache.karaf.features.internal.FeaturesServiceImpl.startBundle(FeaturesServiceImpl.java:501)[21:org.apache.karaf.features.core:3.0.3] ... 10 更多

问题出在 com.google.api.client.http。有人可以帮我解决这个问题吗?

在文件功能中,我有以下依赖项:

features.xml

    <!--Xero dependencies-->
<bundle>wrap:mvn:com.github.xeroapi/xero-java/${xero-java.version}</bundle>
<bundle>wrap:mvn:com.github.xeroapi/xeroapi-schemas/${xero-schemas.version}</bundle>
<bundle>wrap:mvn:javax.xml.bind/jaxb-api/${jaxb-api.version}</bundle>
<bundle>wrap:mvn:com.sun.xml.bind/jaxb-impl/${jaxb-impl.version}</bundle>
<bundle>wrap:mvn:javax.activation/activation/${javax-activation.version}</bundle>
<bundle>wrap:mvn:org.threeten/threetenbp/${threetenbp.version}</bundle>

谢谢大家

最佳答案

Felix 无法解析包 com.google.api.client.http。您必须部署包含该包的 bundle 或将其嵌入到您自己的 bundle 中。该包可从maven Artifact com.google.http-client:google-http-client获得。

您可以将 maven-bundle-plugin 配置为 embed compile scoped dependencies并向上面链接的 google http-client 工件添加依赖项:

<dependency>
<groupId>com.google.http-client</groupId>
<artifactId>google-http-client</artifactId>
<version>1.30.2</version>
</dependency>

可能需要对版本进行一些调整。请注意,该工件被打包为 OSGi bundle ,因此您也可以尝试下载它并将其与您自己的 bundle 一起部署到 karaf(而不是嵌入它)。

关于java - 在 apache felix (osgi) 中集成 xero (发票网关),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57127482/

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