0

在 Karaf (OSGi) 中运行无法加载类 io.jasonwebtoken.impl.crypto.MacProvider

jjwt的版本是0.11.1

我的捆绑包包括 jjwt-api(提供)和 jjwt-jackson(编译),我将 jjwt-impl 作为捆绑包运行。

我需要创建一个“大型捆绑包”来完成这项工作吗?

4

3 回答 3

1

这已在 JJWT 0.11.2 中修复。请升级。:)

于 2020-06-11T20:23:21.987 回答
0

所以,我得到了这个工作,但并不理想。

首先,jjwt-impl 尽管拥有所有正常的 OSGi 标签,但不会导出任何内容。

所以,我必须做两件事——非常糟糕,但我不知道还有什么办法:

1) 将围绕签名方法调用的线程类加载器替换为当前包类加载器。

2)在调用osgi包中嵌入jjwt-impl并导出:

<Embed-Dependency>*;scope=runtime;inline=true</Embed-Dependency>
<Embed-Transitive>false</Embed-Transitive>

 <Export-Package>
     {local-packages},
     io.jsonwebtoken,
     io.jsonwebtoken.lang,
     io.jsonwebtoken.impl.crypto
 </Export-Package>
于 2020-06-05T17:58:53.643 回答
0

我使用了 Peter Berkman 方法并进行了一些修改。

在 pom.xml 中

        <dependency>
        <groupId>io.jsonwebtoken</groupId>
        <artifactId>jjwt-api</artifactId>
        <version>0.11.2</version>
    </dependency>
    <dependency>
        <groupId>io.jsonwebtoken</groupId>
        <artifactId>jjwt-impl</artifactId>
        <version>0.11.2</version>
        <scope>runtime</scope>
    </dependency>
    <dependency>
        <groupId>io.jsonwebtoken</groupId>
        <artifactId>jjwt-jackson</artifactId>
        <version>0.11.2</version>
        <scope>runtime</scope>
    </dependency>
        <plugin>
            <groupId>org.apache.felix</groupId>
            <artifactId>maven-bundle-plugin</artifactId>
            <extensions>true</extensions>
            <configuration>
                <instructions>
                <Karaf-Commands>org.foo.app</Karaf-Commands>
                            <plugin>
            <groupId>org.apache.felix</groupId>
            <artifactId>maven-bundle-plugin</artifactId>
            <extensions>true</extensions>
            <configuration>
                <instructions>
                <Karaf-Commands>org.foo.app</Karaf-Commands>
                <!-- dependencies inside the bundle -->
                <Embed-Dependency>*;scope=runtime;inline=true</Embed-Dependency>
                <Export-Package>
                    {local-packages},
                    io.jsonwebtoken,
                    io.jsonwebtoken.lang,
                    io.jsonwebtoken.impl.crypto
                </Export-Package> -->
                </instructions>
            </configuration>
        </plugin>
                <Embed-Dependency>*;scope=runtime;inline=true</Embed-Dependency>
                </instructions>
            </configuration>
        </plugin>

在 features.xml 中

    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <features xmlns="http://karaf.apache.org/xmlns/features/v1.2.0"name="${project.artifactId}-${project.version}">
    <feature name="${project.artifactId}" version="${project.version}"
             description="${project.description}">
    <feature>onos-api</feature>
    <bundle>mvn:io.jsonwebtoken/jjwt-api/0.11.2</bundle>
    <bundle>mvn:io.jsonwebtoken/jjwt-impl/0.11.2</bundle>
    <bundle>mvn:io.jsonwebtoken/jjwt-jackson/0.11.2</bundle>
    <bundle>mvn:${project.groupId}/${project.artifactId}/${project.version}</bundle>

</feature>
于 2021-03-18T14:11:57.067 回答