*/
public static final String ACTION_INTERCEPTOR_STACK_BEAN_ID = "actionInterceptorStack";
protected List<ActionInterceptor> findActionInterceptors() throws Exception {
try {
ActionInterceptorStack actionInterceptorStack = (ActionInterceptorStack)applicationContext.getBean(ACTION_INTERCEPTOR_STACK_BEAN_ID);
if (actionInterceptorStack == null)
return null;
return actionInterceptorStack.getActionInterceptors();
} catch (NoSuchBeanDefinitionException e) {
return null;
}
}