use of org.springframework.graphql.data.method.annotation.support.AnnotatedControllerConfigurer in project spring-graphql by spring-projects.
the class GraphQlSetup method runtimeWiringForAnnotatedControllers.
public GraphQlSetup runtimeWiringForAnnotatedControllers(ApplicationContext context) {
AnnotatedControllerConfigurer configurer = new AnnotatedControllerConfigurer();
configurer.setApplicationContext(context);
configurer.afterPropertiesSet();
return runtimeWiring(configurer);
}
Aggregations