About mvc:intercepter,how to set excluded path

As we know, we can config an interceptor like that:

 <mvc:interceptor>
        <mvc:mapping path="/outfit/**" />
        <bean class="OpenSessionInViewInterceptor">
            <property name="sessionFactory">
                <ref bean="sessionFactory" />
            </property>
        </bean>

My question, how to configure excluded path?

5
задан skaffman 22 April 2011 в 18:01
поделиться