Hello I wish I could define two filters like this
<filter-mapping>
<filter-name>SecurityFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<filter-mapping>
<filter-name>ContextFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
with the same pattern /* in my web.xml file, and I wish I could be sure the SecurityFilter will be executed before the other. Is there a way to do so?