Skip to content

Commit dab6a0b

Browse files
committed
🎨 修改实例方法名称
1 parent 6644ca2 commit dab6a0b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

api-boot-project/api-boot-autoconfigure/src/main/java/org/minbox/framework/api/boot/autoconfigure/oauth/ApiBootResourceServerAutoConfiguration.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public void configure(HttpSecurity http) throws Exception {
7575
*/
7676
@Bean
7777
@ConditionalOnMissingBean
78-
public AccessTokenInvalidResponse tokenInvalidResponse() {
78+
public AccessTokenInvalidResponse accessTokenInvalidResponse() {
7979
return new DefaultAccessTokenInvalidResponse();
8080
}
8181

@@ -86,7 +86,7 @@ public AccessTokenInvalidResponse tokenInvalidResponse() {
8686
*/
8787
@Bean
8888
public AuthenticationEntryPoint tokenInvalidAuthenticationEntryPoint() {
89-
return new AccessTokenInvalidAuthenticationEntryPoint(tokenInvalidResponse());
89+
return new AccessTokenInvalidAuthenticationEntryPoint(accessTokenInvalidResponse());
9090
}
9191

9292
@Override

0 commit comments

Comments
 (0)