2024-11-13|今天我做了什么

Spring 周报

This Week in Spring - November 12th, 2024

本地 Authorization Server

Tanzu 开发了一个本地的 Spring Authorization Server,相关介绍参考下面两篇文章。

可以从 这里 下载(需要登录)最新版本的 jar。下载成功之后,运行:

java -jar tanzu-local-authorization-server-<VERSION>.jar

用户名和密码在控制台:

🧑 You can log in with the following users:
---
username: user
password: password

该应用是一个 Spring Boot 项目,默认配置如下:

security:
    oauth2:
      client:
        registration:
          tanzu-local-authorization-server:
            client-id: default-client-id
            client-secret: default-client-secret
            client-name: Tanzu Local Authorization Server
            scope:
              - openid
              - email
              - profile
        provider:
          tanzu-local-authorization-server:
            issuer-uri: http://localhost:9000

更详细的说明,可以参考上面的链接。示例源代码地址:https://github.com/Kehrlann/tlas-client-demo 。

类似的,可以作为本地的 Authorization Server 的还有:

Spring Boot 发送邮件

Share this post:

Related content