最近我开始学习如何用oauth2.0+jwt配置springboot,我有一个问题:是否可以使用springbootsecurity+jwt来避免oauth2.0?
是的,可以使用 JWT 无需使用标准化 OAuth 2.0 流动。 Here AUTH0 . 例如,您可以使用此依赖关系:
JWT
OAuth 2.0
<!-- https://mvnrepository.com/artifact/org.springframework.security/spring-security-jwt --> <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-jwt</artifactId> <version>1.0.9.RELEASE</version> </dependency>