Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy

Spring officially announced that the Spring OAuth 2.0 authorization server has arrived


Jun 01, 2021 Article blog



April this year Spring Official initiated Spring Authorization Server project.This project is Spring Security Leaded community driven, independent incubation project.

Because we are familiar with and are using Spring Security OAuth Already in the end of the project life cycle, Spring Authorization Server Replace Spring Security OAuth for Spring Community OAuth2.0 Authorized server support.

After four months of hard work, Spring Authorization Server Project OAuth2.0 The authorized server development library officially released the first version.

yesterday Spring Security Official release news: The new Spring license server is coming!

 Spring officially announced that the Spring OAuth 2.0 authorization server has arrived1

Currently you can pass by repo.spring.IO or Maven Central warehouse gets it, Maven The coordinates are as follows:

 <dependency>
     <groupId>org.springframework.security.experimental</groupId>
     <artifactId>spring-security-oauth2-authorization-server</artifactId>
     <version>0.0.1</version>
 </dependency>

Initial version characteristics:

  • OAuth 2.0 Authorization Code Mode - RFC 6749
  • OAuth 2.0 Client Credential Mode - RFC 6749
  • JSON Web Token (JWT) — RFC 7519
  • JSON Web Signature (JWS) — RFC 7515
  • JSON Web Key (JWK) — RFC 7517
  • Key management, which is used to provide keys when signing JWT (JWS).

Simplified and password modes are not currently implemented.

In late November 2019, Spring officials stated in the Spring Security OAuth 2.0 roadmap that version 2.3.x would reach the end of the project life cycle (End Of Life) in March 2020, followed by releases of 2.4.x and 2.5.x.

Subsequent 2.4.x and 2.5.x patch and security fix support will continue until May 2021, and additional 2.5.x security fix support will continue until the project termination date in May 2022. T he same end-of-life schedule applies to the corresponding Spring Boot 2 auto-configuration project. Spring Security OAuth 2.0 will be open to direct management by members of the Spring community after the project is terminated in May 2022.

(Recommended course: Spring tutorial)

Source: www.toutiao.com/a6864378555522875912/

These are W3Cschool编程狮 official announcement about Spring OAuth 2.0 licensing servers coming, and I hope to help you.