AabhaVarma
Jan 11th, 2009, 05:24 PM
Hi
I am a newbie to spring.
The xml file for configuration is
<bean id="handlerMapping" class="org.springframework.web.servlet.handler.SimpleUrlH andlerMapping">
,.....
<property name="interceptors">
<list>
<ref bean="commonInfoInterceptor" />
<ref bean="TypoInterceptor" />
</list>
</property>
these are being referred to a bean that extends
HandlerInterceptorAdapter
The problem is, only one interceptor is being invoked.
I may be missing some configuration. could anyone direct me to where to debug
I am a newbie to spring.
The xml file for configuration is
<bean id="handlerMapping" class="org.springframework.web.servlet.handler.SimpleUrlH andlerMapping">
,.....
<property name="interceptors">
<list>
<ref bean="commonInfoInterceptor" />
<ref bean="TypoInterceptor" />
</list>
</property>
these are being referred to a bean that extends
HandlerInterceptorAdapter
The problem is, only one interceptor is being invoked.
I may be missing some configuration. could anyone direct me to where to debug