0
私はSpringBootアプリケーションを使用して、HandlerInterceptorを実装してAPIの使用に関する一般情報を記録します。私はそれもSpring Security's OAuth2 endpointにログ要求をしたいが、要求を傍受しない。SpringBoot HandlerInterceptorがライブラリのエンドポイントを傍受しない
@Configuration
public class WebConfiguration extends WebMvcConfigurerAdapter {
@Override
public void addInterceptors(InterceptorRegistry registry) {
// register the interceptor that will write API usage info to a file
registry.addInterceptor(new ServiceUsageInterceptor());
}
どのようにすべてのリクエストを傍受するようにHandlerInterceptorを設定できますか?
おかげ
また、インターセプタークラスを表示します。 –