기본 OAuth토큰 발급 URL 수정 -> /oauth2/token(이상욱D 요청)

This commit is contained in:
Yunsam.Eo
2025-12-10 23:13:00 +09:00
parent 0b98c8d11f
commit 89e83bb15f
@@ -104,7 +104,7 @@ public class AuthorizationServerConfig extends AuthorizationServerConfigurerAdap
tokenType = vo.getProperty(PROP_TOKEN_TYPE, "JWT");
}
// endpoints.pathMapping("/oauth/token", "/auth/oauth/v2/token") ;
endpoints.pathMapping("/oauth/token", "/oauth2/token") ;
endpoints.authenticationManager(authenticationManager);
endpoints.userDetailsService(userDetailsService);