[struts 2] Simplifying the interceptor stack

2007-02-08 Thread mraible
to remove everything but the validation and workflow interceptors? Also, are there any performance reasons to have separate stacks for display only (list) screens vs. forms (crud)? Thanks, Matt -- View this message in context: http://www.nabble.com/-struts-2--Simplifying-the-interceptor-stack

Re: [struts 2] Simplifying the interceptor stack

2007-02-08 Thread David H. DeWolf
mraible wrote: Also, are there any performance reasons to have separate stacks for display only (list) screens vs. forms (crud)? I recently went through a series of performance monitoring and tuning and found that standard interceptors that are NOT executed are logged as taking 0ms. So,

Re: [struts 2] Simplifying the interceptor stack

2007-02-08 Thread Tom Schneider
I can confirm these results based on my own webwork profiling experience. I wouldn't worry too much about interceptors that you don't use--the penalty is very minimal. David H. DeWolf wrote: mraible wrote: Also, are there any performance reasons to have separate stacks for display only