forked from spring-io/spring-asciidoctor-backends
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WebInterceptor now uses delegation, forming a chain of interceptors followed by a GraphQLService at the end to invoke graphql.GraphQL. Closes spring-iogh-49
- Loading branch information
1 parent
e5a92a3
commit f93c46e
Showing
29 changed files
with
402 additions
and
407 deletions.
There are no files selected for viewing
41 changes: 41 additions & 0 deletions
41
...arter/src/main/java/org/springframework/graphql/boot/GraphQLServiceAutoConfiguration.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
/* | ||
* Copyright 2002-2021 the original author or authors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.springframework.graphql.boot; | ||
|
||
import graphql.GraphQL; | ||
|
||
import org.springframework.boot.autoconfigure.AutoConfigureAfter; | ||
import org.springframework.boot.autoconfigure.condition.ConditionalOnClass; | ||
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean; | ||
import org.springframework.context.annotation.Bean; | ||
import org.springframework.context.annotation.Configuration; | ||
import org.springframework.graphql.GraphQLService; | ||
import org.springframework.graphql.support.ExecutionGraphQLService; | ||
import org.springframework.graphql.support.GraphQLSource; | ||
|
||
@Configuration | ||
@ConditionalOnClass(GraphQL.class) | ||
@ConditionalOnMissingBean(GraphQLService.class) | ||
@AutoConfigureAfter(GraphQLAutoConfiguration.class) | ||
public class GraphQLServiceAutoConfiguration { | ||
|
||
@Bean | ||
@ConditionalOnMissingBean | ||
public GraphQLService graphQLService(GraphQLSource graphQLSource) { | ||
return new ExecutionGraphQLService(graphQLSource); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
graphql-spring-boot-starter/src/main/resources/META-INF/spring.factories
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
org.springframework.boot.autoconfigure.EnableAutoConfiguration=\ | ||
org.springframework.graphql.boot.actuate.metrics.GraphQLMetricsAutoConfiguration,\ | ||
org.springframework.graphql.boot.GraphQLAutoConfiguration,\ | ||
org.springframework.graphql.boot.GraphQLServiceAutoConfiguration,\ | ||
org.springframework.graphql.boot.WebFluxGraphQLAutoConfiguration,\ | ||
org.springframework.graphql.boot.WebMvcGraphQLAutoConfiguration |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.