使用Spring OAuth Server时,有一个redirect_uri请求参数,该参数与oauth客户端详细信息数据库表中的任何已注册URI不匹配时,会导致oauth服务器抛出RedirectMismatchException。
我无法使用@ControllerAdvice捕获此RedirectMismatchException。如何在Spring oAuth Server中捕获RedirectMismatchException?
我当时在想HttpSecurity可以配置一个过滤器,该过滤器可以用来捕获此异常,但无法确定要使用哪个过滤器。
请帮助我解决这个问题。