Aakanksha Asked: 2023-08-17 21:55:30 +0800 CST2023-08-17 21:55:30 +0800 CST 2023-08-17 21:55:30 +0800 CST Spring授权服务器架构相关问题 772 请提供以下协助: Spring 授权服务器版本 1.1.1 的架构 表名和列名可以同时更改吗? oauth_client_details 和 oauth2_registered_client 有什么区别? 这个模式正确吗?https://github.com/spring-attic/spring-security-oauth/blob/main/spring-security-oauth/src/test/resources/schema.sql 提前致谢。 spring-authorization-server 1 个回答 Voted Best Answer Steve Riesenberg 2023-08-17T23:48:51+08:002023-08-17T23:48:51+08:00 首先,Spring Security OAuth 不再受支持,并且已经终止生命。您链接的架构对于 Spring Authorization Server 来说不正确,因为 SAS 是一个单独的(新)项目,并且不向后兼容已弃用的项目。 其次,用于核心服务的 JDBC 实现的模式是: oauth2-注册-客户端-schema.sql oauth2-授权-schema.sql oauth2-授权-同意-schema.sql 此实现和测试提供了自定义架构和列名称的示例。您可能还对How-to: Implement core services with JPA中的示例感兴趣,这将使您能够完全灵活地根据需要自定义架构。
首先,Spring Security OAuth 不再受支持,并且已经终止生命。您链接的架构对于 Spring Authorization Server 来说不正确,因为 SAS 是一个单独的(新)项目,并且不向后兼容已弃用的项目。
其次,用于核心服务的 JDBC 实现的模式是:
此实现和测试提供了自定义架构和列名称的示例。您可能还对How-to: Implement core services with JPA中的示例感兴趣,这将使您能够完全灵活地根据需要自定义架构。