我正在尝试从2个不同的前缀中获取令牌...
目前,令牌来自此端点:
http://localhost:9000/v1/oauth/token
但是我也想选择从该端点获取令牌:
http://localhost:9000/v2/oauth/token
@Override
public void configure(AuthorizationServerEndpointsConfigurer endpoints)
throws Exception {
endpoints
.tokenServices(tokenServices())
.authenticationManager(authenticationManager)
.userDetailsService(userDetailsService);
endpoints.prefix("/v1");
}
我正在尝试使用PathMapping,但它根本不起作用(我正在获取404)。
谢谢。