日日操夜夜添-日日操影院-日日草夜夜操-日日干干-精品一区二区三区波多野结衣-精品一区二区三区高清免费不卡

公告:魔扣目錄網為廣大站長提供免費收錄網站服務,提交前請做好本站友鏈:【 網站目錄:http://www.ylptlb.cn 】, 免友鏈快審服務(50元/站),

點擊這里在線咨詢客服
新站提交
  • 網站:51998
  • 待審:31
  • 小程序:12
  • 文章:1030137
  • 會員:747

前言

Netflix 已開放其 Domain Graph Service(DGS)框架的源代碼 ,該框架是為了方便整合 GraphQL 使用,用于簡化 GraphQL 的實現。

GraphQL 主要是作用于數據接口,比如前端后端交互。無需定義或修改后臺 Controller、Service 等業務代碼即可實現靈活的數據變更,客戶端可以自由獲取服務端事先定義好的數據,提高了交互接口的靈活性

組件依賴

graphql-dgs-spring-boot-starter

<dependency>
    <groupId>com.netflix.graphql.dgs</groupId>
    <artifactId>graphql-dgs-spring-boot-starter</artifactId>
    <version>3.5.1</version>
</dependency>

DGS 必須從 jcenter 下載,不然部分依賴者無法下載。踩坑很久

    <profiles>
        <profile>
            <activation>
                <activeByDefault>true</activeByDefault>
            </activation>
            <repositories>
                <repository>
                    <snapshots>
                        <enabled>false</enabled>
                    </snapshots>
                    <id>central</id>
                    <name>bintray</name>
                    <url>https://jcenter.bintray.com</url>
                </repository>
            </repositories>
            <pluginRepositories>
                <pluginRepository>
                    <snapshots>
                        <enabled>false</enabled>
                    </snapshots>
                    <id>central</id>
                    <name>bintray-plugins</name>
                    <url>https://jcenter.bintray.com</url>
                </pluginRepository>
            </pluginRepositories>
            <id>bintray</id>
        </profile>
    </profiles>

定義接口 schema

/src/main/resources/schema/schema.graphqls

此文件定義了客戶端請求入參格式和查詢數據類型

type Query {
    shows(title: String ,releaseYear: Int): [Show]
}

type Show {
    title: String
    releaseYear: Int
}

定義數據抽取規則

@DgsComponent
public class ShowsDatafetcher {

    @DgsData(parentType = "Query", field = "shows")
    public List<Show> shows(@InputArgument("title") String title, @InputArgument("releaseYear") Integer releaseYear) {
        if (title == null) {
            return shows;
        }

        return shows.stream().filter(s -> s.getTitle().contains(title)).collect(Collectors.toList());
    }

    // 模擬 DB 查詢
    private final List<Show> shows = List.of(
            new Show("JAVA", 1995),
            new Show("php", 1995),
            new Show("Python", 1990),
            new Show("golang", 2009),
            new Show("rust", 2015)
    );
}

UI 前端調試

訪問:
http://localhost:8080/graphiql

火爆外網的 DGS 框架使用,更方便 GraphQL 的使用

 

條件查詢

火爆外網的 DGS 框架使用,更方便 GraphQL 的使用

 

接口調用

curl --location --request POST 'http://localhost:8080/graphql' 
--header 'Content-Type: Application/json' 
--data-raw '{"query":"{n  shows(title: "java", releaseYear: 1995) {n    titlen    releaseYearn  }n}n","variables":null}'

java 調用

@SpringBootTest(classes = {DgsAutoConfiguration.class, ShowsDatafetcher.class})
class ShowsDatafetcherTests {

    @Autowired
    DgsQueryExecutor dgsQueryExecutor;

    @Test
    void shows() {
        List<String> titles = dgsQueryExecutor.executeAndExtractJsonPath(
                " { shows { title releaseYear }}",
                "data.shows[*].title");
        assertThat(titles).contains("java");
    }
}

分享到:
標簽:框架 DGS
用戶無頭像

網友整理

注冊時間:

網站:5 個   小程序:0 個  文章:12 篇

  • 51998

    網站

  • 12

    小程序

  • 1030137

    文章

  • 747

    會員

趕快注冊賬號,推廣您的網站吧!
最新入駐小程序

數獨大挑戰2018-06-03

數獨一種數學游戲,玩家需要根據9

答題星2018-06-03

您可以通過答題星輕松地創建試卷

全階人生考試2018-06-03

各種考試題,題庫,初中,高中,大學四六

運動步數有氧達人2018-06-03

記錄運動步數,積累氧氣值。還可偷

每日養生app2018-06-03

每日養生,天天健康

體育訓練成績評定2018-06-03

通用課目體育訓練成績評定