You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: oauth2-authorization-server/src/main/java/org/springframework/security/oauth2/server/authorization/JdbcOAuth2AuthorizationConsentService.java
+8-2Lines changed: 8 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
/*
2
-
* Copyright 2020-2021 the original author or authors.
2
+
* Copyright 2020-2023 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
@@ -43,11 +43,17 @@
43
43
* {@link JdbcOperations} for {@link OAuth2AuthorizationConsent} persistence.
44
44
*
45
45
* <p>
46
-
* <b>NOTE:</b> This {@code OAuth2AuthorizationConsentService} depends on the table definition
46
+
* <b>IMPORTANT:</b> This {@code OAuth2AuthorizationConsentService} depends on the table definition
47
47
* described in
48
48
* "classpath:org/springframework/security/oauth2/server/authorization/oauth2-authorization-consent-schema.sql" and
49
49
* therefore MUST be defined in the database schema.
50
50
*
51
+
* <p>
52
+
* <b>NOTE:</b> This {@code OAuth2AuthorizationConsentService} is a simplified JDBC implementation that MAY be used in a production environment.
53
+
* However, it does have limitations as it likely won't perform well in an environment requiring high throughput.
54
+
* The expectation is that the consuming application will provide their own implementation of {@code OAuth2AuthorizationConsentService}
55
+
* that meets the performance requirements for its deployment environment.
Copy file name to clipboardExpand all lines: oauth2-authorization-server/src/main/java/org/springframework/security/oauth2/server/authorization/JdbcOAuth2AuthorizationService.java
+8-2Lines changed: 8 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
/*
2
-
* Copyright 2020-2022 the original author or authors.
2
+
* Copyright 2020-2023 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
@@ -65,11 +65,17 @@
65
65
* {@link JdbcOperations} for {@link OAuth2Authorization} persistence.
66
66
*
67
67
* <p>
68
-
* <b>NOTE:</b> This {@code OAuth2AuthorizationService} depends on the table definition
68
+
* <b>IMPORTANT:</b> This {@code OAuth2AuthorizationService} depends on the table definition
69
69
* described in
70
70
* "classpath:org/springframework/security/oauth2/server/authorization/oauth2-authorization-schema.sql" and
71
71
* therefore MUST be defined in the database schema.
72
72
*
73
+
* <p>
74
+
* <b>NOTE:</b> This {@code OAuth2AuthorizationService} is a simplified JDBC implementation that MAY be used in a production environment.
75
+
* However, it does have limitations as it likely won't perform well in an environment requiring high throughput.
76
+
* The expectation is that the consuming application will provide their own implementation of {@code OAuth2AuthorizationService}
77
+
* that meets the performance requirements for its deployment environment.
Copy file name to clipboardExpand all lines: oauth2-authorization-server/src/main/java/org/springframework/security/oauth2/server/authorization/client/JdbcRegisteredClientRepository.java
+8-2Lines changed: 8 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
/*
2
-
* Copyright 2020-2022 the original author or authors.
2
+
* Copyright 2020-2023 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
@@ -52,10 +52,16 @@
52
52
* {@link JdbcOperations} for {@link RegisteredClient} persistence.
53
53
*
54
54
* <p>
55
-
* <b>NOTE:</b> This {@code RegisteredClientRepository} depends on the table definition described in
55
+
* <b>IMPORTANT:</b> This {@code RegisteredClientRepository} depends on the table definition described in
56
56
* "classpath:org/springframework/security/oauth2/server/authorization/client/oauth2-registered-client-schema.sql" and
57
57
* therefore MUST be defined in the database schema.
58
58
*
59
+
* <p>
60
+
* <b>NOTE:</b> This {@code RegisteredClientRepository} is a simplified JDBC implementation that MAY be used in a production environment.
61
+
* However, it does have limitations as it likely won't perform well in an environment requiring high throughput.
62
+
* The expectation is that the consuming application will provide their own implementation of {@code RegisteredClientRepository}
63
+
* that meets the performance requirements for its deployment environment.
0 commit comments