我想获得这个代码示例的Maven depedency:
Keys.hmacShaKeyFor(signingKeySecret.getBytes());
通常情况下,我应该处于这种状态,但它似乎缺席了:
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt</artifactId>
<version>0.9.1</version>
</dependency>
有人知道它在哪里吗?
谢谢
它是jjwt-impl
的一部分
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-impl</artifactId>
<version>0.11.2</version>
</dependency>
我遇到了类似的问题,忘记从依赖项中删除<scope>runtime</scope>
行。当我把它取下来时,它就解决了。
以下是我的依赖项:
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-impl</artifactId>
<version>0.11.5</version>
<!-- <scope>runtime</scope> -->
</dependency>