Package org.springframework.messaging.handler.annotation.support

Examples of org.springframework.messaging.handler.annotation.support.HeaderMethodArgumentResolver


            ((ConfigurableApplicationContext) getApplicationContext()).getBeanFactory() : null;

    List<HandlerMethodArgumentResolver> resolvers = new ArrayList<HandlerMethodArgumentResolver>();

    // Annotation-based argument resolution
    resolvers.add(new HeaderMethodArgumentResolver(this.conversionService, beanFactory));
    resolvers.add(new HeadersMethodArgumentResolver());
    resolvers.add(new DestinationVariableMethodArgumentResolver(this.conversionService));

    // Type-based argument resolution
    resolvers.add(new PrincipalMethodArgumentResolver());
View Full Code Here

TOP

Related Classes of org.springframework.messaging.handler.annotation.support.HeaderMethodArgumentResolver

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.