I tend to lean toward using annotations and only using xml descriptor files for deployment time overrides. Kind of a context over configuration approach --- by default my annotation settings are used but if the deployer wants to change it for some reason, they can modify the web.xml before deployment. It also makes it easier for me to code and maintain having the configuration in the same class...but that's probably just a personal preference.
I use Netbeans mostly, and I agree with you, I haven't seen anything that aggregates and provides a resultant setting...which isn't usually a problem for me because I tend to use annotations and it's all in one place =) S On Mon, Feb 3, 2014 at 11:42 AM, Hayden Jones <[email protected]>wrote: > y filters with the @WebFilter annotation or configure it in the web.xml > > Currently, I am leaning towards using the web.xml as the IDE I am using > does not list servlet filters if they are only annotated. > > Are there IDEs that support a capability to see the WebFilters all togethe > -- You received this message because you are subscribed to the Google Groups "Java Posse" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/javaposse. For more options, visit https://groups.google.com/groups/opt_out.
