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>