Hi, let's say I have this default interceptor stack
<interceptor-ref name="exception"/> <interceptor-ref name="params"/> <interceptor-ref name="servletConfig"/> <interceptor-ref name="prepare"/> <interceptor-ref name="modelDriven"/> <interceptor-ref name="staticParams"/> <interceptor-ref name="actionMappingParams"/> <interceptor-ref name="params"/> <interceptor-ref name="conversionError"/> <interceptor-ref name="beanValidation"> <param name="excludeMethods">input,back,cancel,browse</param> </interceptor-ref> <interceptor-ref name="validation" /> <interceptor-ref name="prgInterceptor" /> <interceptor-ref name="workflow"> <param name="excludeMethods">input,back,cancel,browse</param> </interceptor-ref> using annotations on an action class, can I place another interceptor between prepare and model driven? Or do I need to re-declare the entire stack with the additional interceptor? Thanks