We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Even if I override the priority() method my interceptor is executed before the default ones.
@Override public PRIORITY priority() { return InvokationOrder.AFTER_DEFAULT; }
The reason is simple: the default interceptors are always added last to the list of interceptors and never repositioned.
The text was updated successfully, but these errors were encountered:
How do you add your interceptor? That's probably why it doesn't work.
Sorry, something went wrong.
I define them in web.xml.
8f7436f
No branches or pull requests
Even if I override the priority() method my interceptor is executed before the default ones.
The reason is simple: the default interceptors are always added last to the list of interceptors and never repositioned.
The text was updated successfully, but these errors were encountered: