Re: Servlet 3.0, @WebFilter and ordering

2011-02-09 Thread Stevo Slavić
Thanks everyone, Just wish there was an "Ordered" interface, or annotation, or attribute of @WebXXX annotations to which ordering can be applied, so that web.xml is not needed for such IMO basic feature. Regards, Stevo. On Wed, Feb 9, 2011 at 8:58 AM, Remy Maucherat wrote: > On Wed, Feb 9, 2011

Re: Servlet 3.0, @WebFilter and ordering

2011-02-08 Thread Remy Maucherat
On Wed, Feb 9, 2011 at 7:46 AM, Konstantin Kolinko wrote: > 2011/2/8 Christopher Schultz : >> On 2/8/2011 4:31 AM, Stevo Slavić wrote: >>> I don't see support for >>> ordering in @WebFilter annotation. Am I missing something? >> >> I don't see anything that would allow an ordering to be specified.

Re: Servlet 3.0, @WebFilter and ordering

2011-02-08 Thread Konstantin Kolinko
2011/2/8 Christopher Schultz : > On 2/8/2011 4:31 AM, Stevo Slavić wrote: >> I don't see support for >> ordering in @WebFilter annotation. Am I missing something? > > I don't see anything that would allow an ordering to be specified. > Ordering is discussed in chapters 8.2.2 and 8.2.3 of the servl

Re: Servlet 3.0, @WebFilter and ordering

2011-02-08 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Stevo, On 2/8/2011 4:31 AM, Stevo Slavić wrote: > I don't see support for > ordering in @WebFilter annotation. Am I missing something? I don't see anything that would allow an ordering to be specified. > But if [programmatically adding] is the only

Re: Servlet 3.0, @WebFilter and ordering

2011-02-08 Thread Mark Thomas
On 08/02/2011 09:31, Stevo Slavić wrote: > Hello Tomcat users, > > Now that Tomcat 7 is out with Servlet 3.0 support, I've been trying > out new features it brings. In pre 3.0 servlet era, one would specify > filter in web.xml and order they are defined in the xml would > determine order filters w

Servlet 3.0, @WebFilter and ordering

2011-02-08 Thread Stevo Slavić
Hello Tomcat users, Now that Tomcat 7 is out with Servlet 3.0 support, I've been trying out new features it brings. In pre 3.0 servlet era, one would specify filter in web.xml and order they are defined in the xml would determine order filters would get applied. I don't see support for ordering in