当前位置: 代码迷 >> 综合 >> Caused by: java.lang.ClassNotFoundException: org.springframework.security.jwt.crypto.sign.MacSigner
  详细解决方案

Caused by: java.lang.ClassNotFoundException: org.springframework.security.jwt.crypto.sign.MacSigner

热度:31   发布时间:2023-11-22 07:32:34.0

oauth2整合security 报错 Caused by: java.lang.ClassNotFoundException: org.springframework.security.jwt.crypto.sign.MacSigner 解决

添加 pom依赖

// 添加security提供的jwt包
<dependency><groupId>org.springframework.security</groupId><artifactId>spring-security-jwt</artifactId><version>1.1.0.RELEASE</version>
</dependency>
  相关解决方案