是否可以使用多个端点网址?
我创建了一个/ oauth / v2 / token端点,我能够使它工作。
但我想同时使用它和本机端点(/ oauth / token)。 oauth:authorization-server只接受一个token-endpoint-url
<oauth:authorization-server
client-details-service-ref="clientDetails" token-services-ref="tokenServices"
token-endpoint-url="/oauth/v2/token" >
<oauth:refresh-token/>
<oauth:client-credentials/>
<oauth:password/>
<oauth:custom-grant token-granter-ref="appTokenGranter"/>
</oauth:authorization-server>
有可能做我想做的事吗?