302.4. 認証および認可エラーの処理
SpringSecurityAuthorizationPolicy
で認証または承認が失敗すると、CamelAuthorizationException
が発生します。これは、例外句などの Camel の標準的な例外処理メソッドを使用して処理できます。CamelAuthorizationException
には例外を書き換えたポリシーの ID への参照があり、ポリシーと例外のタイプに基づいてエラーを処理できます。
<onException> <exception>org.springframework.security.authentication.AccessDeniedException</exception> <choice> <when> <simple>${exception.policyId} == 'user'</simple> <transform> <constant>You do not have ROLE_USER access!</constant> </transform> </when> <when> <simple>${exception.policyId} == 'admin'</simple> <transform> <constant>You do not have ROLE_ADMIN access!</constant> </transform> </when> </choice> </onException>