zoukankan      html  css  js  c++  java
  • 【转】Spring 官方宣布:新的 Spring OAuth 2.0 授权服务器发布第一个版本

      原文地址:https://www.oschina.net/news/118103/new-spring-oauth-server

      原文作者:码农小胖哥

      今年四月份Spring官方发起Spring Authorization Server项目。该项目是由Spring Security主导的一个社区驱动的、独立的孵化项目。由于我们熟悉而且正在使用的Spring Security OAuth已经处在项目生命周期的尽头,Spring Authorization Server将替代Spring Security OAuth为 Spring 社区提供OAuth2.0授权服务器支持。经过四个月的努力,Spring Authorization Server项目中的OAuth2.0授权服务器开发库正式发布了第一个版本。

      昨天Spring Security官方发布消息:新的Spring 授权服务器已经来了!

    spring security 推特发布相关声明

      目前你可以通过 repo.spring.io 或者Maven中央仓库获取到它,Maven坐标如下:

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

    初始版本特性:

    • OAuth 2.0 授权码模式 — RFC 6749

    • OAuth 2.0 客户端凭据模式 — RFC 6749

    • JSON Web Token (JWT) — RFC 7519

    • JSON Web Signature (JWS) — RFC 7515

    • JSON Web Key (JWK) — RFC 7517

    • 密钥管理,用于在签署JWT(JWS)时提供密钥

    简化模式和密码模式目前没有实现。

      2019年11月下旬,Spring官方在Spring Security OAuth 2.0路线图中 指出2.3.x版本将在2020年3月到达项目生命周期的终点(End Of Life),随后将会发布2.4.x2.5.x。 后续2.4.x2.5.x补丁和安全修复程序支持将持续到2021年5月,另外2.5.x的安全修复支持将持续到2022年5月项目终止日期。相同的寿命终止时间表适用于对应的Spring Boot 2自动配置项目。Spring Security OAuth 2.0会在2022年5月项目终止后开放给Spring社区中的成员直接管理。

      公告查看:https://spring.io/blog/2020/08/21/get-the-very-first-bits-of-spring-authorization-server-0-0-1

  • 相关阅读:
    使用springboot2+elasticsearch7注意事项
    jwt使用
    CTF web之旅 15
    CTF web之旅 14
    CTF web之旅 13
    CTF web之旅 12
    CTF web之旅 11
    CTF web之旅 10
    CTF web之旅 9
    CTF web之旅 8
  • 原文地址:https://www.cnblogs.com/fanqisoft/p/13549945.html
Copyright © 2011-2022 走看看