Refactor project structure

This commit refactors the project structure to regroup GraphQL web
support under the spring-graphql-web module, and move all the Spring
Boot support classes under a single graphql-spring-boot-starter one.

Right now, the starter module contains everything: classes for MVC,
WebFlux and Actuator support as well as required dependencies. We will
change that in the future.
This commit is contained in:
Brian Clozel
2021-01-05 16:19:48 +01:00
parent 3e8027a0ca
commit 633ee1a1b5
32 changed files with 214 additions and 59 deletions

View File

@@ -2,7 +2,7 @@ package io.spring.sample.graphql.project;
import graphql.schema.idl.RuntimeWiring;
import org.springframework.boot.graphql.RuntimeWiringCustomizer;
import org.springframework.graphql.boot.RuntimeWiringCustomizer;
import org.springframework.stereotype.Component;
@Component

View File

@@ -2,7 +2,7 @@ package io.spring.sample.graphql.repository;
import graphql.schema.idl.RuntimeWiring;
import org.springframework.boot.graphql.RuntimeWiringCustomizer;
import org.springframework.graphql.boot.RuntimeWiringCustomizer;
import org.springframework.stereotype.Component;
@Component