GraphQL Support
Spring Integration 提供了信道适配器来与 GraphQL 协议进行交互。该实现基于 Spring for GraphQL。 你需要将此依赖项包含在你的项目中:
-
Maven
-
Gradle
<dependency>
<groupId>org.springframework.integration</groupId>
<artifactId>spring-integration-graphql</artifactId>
<version>{project-version}</version>
</dependency>
compile "org.springframework.integration:spring-integration-graphql:{project-version}"
GraphQL Outbound Gateway
GraphQlMessageHandler
是一个 AbstractReplyProducingMessageHandler
扩展,它表示一个出站网关合同,用于执行 GraphQL query
、mutation
或 subscription
操作并生成其结果。它需要一个 org.springframework.graphql.ExecutionGraphQlService
来执行 operation
,该 operation
可以针对请求消息静态配置或通过 SpEL 表达式配置。operationName
是可选的,也可以静态配置或通过 SpEL 表达式配置。variablesExpression
也是可选的,用于参数化操作。locale
是可选的,用于 GraphQL Java 库中的操作执行上下文。executionId
可以通过 SpEL 表达式进行配置,默认为请求消息的 id
头。
如果请求消息有效负载是 ExecutionGraphQlRequest
的实例,那么在 GraphQlMessageHandler
中不会执行任何设置操作,并且该输入将按原样用于 ExecutionGraphQlService.execute()
。否则,将使用上面提到的 SpEL 表达式针对请求消息确定 operation
、operationName
、variables
和 executionId
。
GraphQlMessageHandler
是一个响应式流组件,并将 ExecutionGraphQlService.execute(ExecutionGraphQlRequest)
的结果作为 Mono<ExecutionGraphQlResponse>
回复生成。该 Mono
由 ReactiveStreamsSubscribableChannel
输出通道中的框架或在输出通道非响应式时异步地在 AbstractMessageProducingHandler
中订阅。请参阅 ExecutionGraphQlResponse
文档,了解如何处理 GraphQL 操作结果。
@Bean
GraphQlMessageHandlerSpec graphQlMessageHandlerSpec(ExecutionGraphQlService graphQlService) {
return GraphQl.gateway(graphQlService)
.operation("""
query HeroNameAndFriends($episode: Episode) {
hero(episode: $episode) {
name
friends {
name
}
}
}""")
.variablesExpression("{episode:'JEDI'}");
}
@Bean
IntegrationFlow graphqlQueryMessageHandlerFlow(GraphQlMessageHandler handler) {
return IntegrationFlow.from(MessageChannels.flux("inputChannel"))
.handle(handler)
.channel(c -> c.flux("resultChannel"))
.get();
}
@Bean
ExecutionGraphQlService graphQlService(GraphQlSource graphQlSource) {
return new DefaultExecutionGraphQlService(graphQlSource);
}
@Bean
GraphQlSource graphQlSource(AnnotatedControllerConfigurer annotatedDataFetcherConfigurer) {
return GraphQlSource.builder()
.schemaResources(new ClassPathResource("graphql/test-schema.graphqls"))
.configureRuntimeWiring(annotatedDataFetcherConfigurer)
.build();
}
@Bean
AnnotatedControllerConfigurer annotatedDataFetcherConfigurer() {
return new AnnotatedControllerConfigurer();
}
应针对订阅操作的结果应用特殊处理。在这种情况下,ExecutionGraphQlResponse.getData()
将返回一个 SubscriptionPublisher
,必须对其进行手动订阅和处理。或者,它可以通过普通服务激活器扁平映射到 FluxMessageChannel
的回复:
@ServiceActivator(inputChannel = "graphQlResultChannel", outputChannel="graphQlSubscriptionChannel")
public SubscriptionPublisher obtainSubscriptionResult(ExecutionGraphQlResponse graphQlResponse) {
return graphQlResponse.getData();
}
不仅可以通过 HTTP 进行 GraphQL 请求,还可以从任何生成或携带 GraphQL 操作或其消息中参数的上游端点使用此出站网关。GraphQlMessageHandler
处理的结果可作为对上游请求的回复生成,或向下发送以在集成流中进一步处理。