Package org.springframework.web.servlet.handler

Examples of org.springframework.web.servlet.handler.MappedInterceptor


    List<NavigationOutcomeResolver> navigationResolvers = applicationContext.getBean(
        NavigationOutcomeResolverChain.class).getResolvers();
    assertThat(navigationResolvers.get(0), is(ImplicitNavigationOutcomeResolver.class));
    assertThat(navigationResolvers.get(1), is(NavigationMethodOutcomeResolver.class));
    assertHasBean(applicationContext, SpringFacesFactories.class);
    MappedInterceptor mappedInterceptor = getMappedInterceptor(applicationContext, FacesHandlerInterceptor.class);
    assertThat(mappedInterceptor.getPathPatterns(), is(nullValue()));
    assertThat(mappedInterceptor.getInterceptor(), is(FacesHandlerInterceptor.class));
  }
View Full Code Here

TOP

Related Classes of org.springframework.web.servlet.handler.MappedInterceptor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.