I have e.g. 2 Filters (one to check if the user is logged in, and one to check further persmissions), both defined by the Annotation @WebFilter("/pages/*");
Now I want that first the loginFilter is checked and only if it succeeds the second filter.
How can i specify the filter order?
thank you!