Examples of MappedInterceptor


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
Copyright © 2018 www.massapi.com. 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.