溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

SpringBoot開發(fā)中集成Graphql Query是怎樣的

發(fā)布時間:2021-09-29 13:57:49 來源:億速云 閱讀:167 作者:柒染 欄目:開發(fā)技術(shù)

今天就跟大家聊聊有關(guān)SpringBoot開發(fā)中集成Graphql Query是怎樣的,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。

概述

REST作為一種現(xiàn)代網(wǎng)絡(luò)應(yīng)用非常流行的軟件架構(gòu)風(fēng)格受到廣大WEB開發(fā)者的喜愛,在目前軟件架構(gòu)設(shè)計(jì)模式中隨處可見REST的身影,但是隨著REST的流行與發(fā)展,它的一個最大的缺點(diǎn)開始暴露出來:

在很多時候客戶端需要的數(shù)據(jù)往往在不同的地方具有相似性,但卻又不盡相同。

如同樣的用戶信息,在有的場景下前端只需要用戶的簡要信息(名稱、頭像),在其他場景下又需要用戶的詳細(xì)信息。當(dāng)這樣的相似但又不同的地方多的時候,就需要開發(fā)更多的接口來滿足前端的需要。

隨著這樣的場景越來越多,接口越來越多,文檔越來越臃腫,前后端溝通成本呈指數(shù)增加。

基于上面的場景,我們迫切需要有一種解決方案或框架,可以使得在使用同一個領(lǐng)域模型(DO、DTO)的數(shù)據(jù)接口時可以由前端指定需要的接口字段,而后端根據(jù)前端的需求自動適配并返回對應(yīng)的字段。

這就是我們今天的主角GraphQL。

場景模擬

考慮下面的場景:

SpringBoot開發(fā)中集成Graphql Query是怎樣的

用戶 與 文章 是一對多的關(guān)系,一個用戶可以發(fā)表多篇文章,同時又可以根據(jù)文章找到對應(yīng)的作者。

我們需要構(gòu)建以下幾個Graphql查詢:

  • 根據(jù)用戶ID獲取用戶詳情,并獲取此用戶發(fā)表的所有文章

  • 根據(jù)文章ID獲取文章詳情,并獲取文章作者的信息

當(dāng)然項(xiàng)目是基于SpringBoot開發(fā)的。

開發(fā)實(shí)戰(zhàn)

在正式開發(fā)之前我推薦你在IDEA上安裝一下 JS GraphQL插件,這個插件方便我們編寫Schema,語法糾錯,代碼高亮等等。。。

SpringBoot開發(fā)中集成Graphql Query是怎樣的

創(chuàng)建一個SpringBoot項(xiàng)目

通過IDEA創(chuàng)建一個SpringBoot項(xiàng)目,并引入對應(yīng)的jar

<dependencies>  <dependency>   <groupId>org.springframework.boot</groupId>   <artifactId>spring-boot-starter</artifactId>  </dependency>   <dependency>   <groupId>org.springframework.boot</groupId>   <artifactId>spring-boot-starter-web</artifactId>  </dependency>   <!--graphql start-->  <dependency>   <groupId>com.graphql-java</groupId>   <artifactId>graphql-spring-boot-starter</artifactId>   <version>5.0.2</version>  </dependency>  <dependency>   <groupId>com.graphql-java</groupId>   <artifactId>graphql-java-tools</artifactId>   <version>5.2.4</version>  </dependency>  <!--graphql end-->   <dependency>   <groupId>org.projectlombok</groupId>   <artifactId>lombok</artifactId>  </dependency> </dependencies>

這里主要需要引入 graphql-spring-boot-starter和 graphql-java-tools。

建立Java實(shí)體類

User

@Data public class User {     private int userId;     private String userName;     private String realName;     private String email;     private List<Post> posts;      public User() {     }      public User(int userId, String userName, String realName, String email) {         this.userId = userId;         this.userName = userName;         this.realName = realName;         this.email = email;     } }

Post

@Data public class Post {     private int postId;     private String title ;     private String text;     private String  category;     private User user;      public Post() {      }      public Post(int postId, String title, String text, String category) {         this.postId = postId;         this.title = title;         this.text = text;         this.category = category;     }  }

定義了兩個JAVA實(shí)體:Post,User。

編寫Schema文件

在resources/schema目錄下創(chuàng)建GraphQL Schema文件

schema {     query: Query, }  type Query {     # 獲取具體的用戶     getUserById(id:Int) : User     # 獲取具體的博客     getPostById(id:Int) : Post }  type User {     userId : ID!,     userName : String,     realName : String,     email : String,     posts : [Post], }  type Post {     postId : ID!,     title : String!,     text : String,     category: String     user: User, }

如上,我們通過  type關(guān)鍵字定義了兩個對象,User與Post。在屬性后面添加!表明這是一個非空屬性,通過[Post]表明這是一個Post集合,類似于Java對象中List。

通過Query關(guān)鍵字定義了兩個查詢對象,getUserById,getPostById,分別返回User對象和Post對象。

關(guān)于schema的語法大家可以參考鏈接:https://graphql.org/learn/schema

編寫業(yè)務(wù)邏輯

PostService

@Service public class PostService implements GraphQLQueryResolver {     /**      * 為了測試,只查詢id為1的結(jié)果      */     public Post getPostById(int id){         if(id == 1){             User user = new User(1,"javadaily","JAVA日知錄","zhangsan@qq.com");             Post post = new Post(1,"Hello,Graphql","Graphql初體驗(yàn)","日記");             post.setUser(user);             return post;         }else{             return null;         }      } }

UserService

@Service public class UserService implements GraphQLQueryResolver {     List<User> userList = Lists.newArrayList();      public User getUserById(int id){         return userList.stream().filter(item -> item.getUserId() == id).findAny().orElse(null);     }       @PostConstruct     public void  initUsers(){         Post post1 = new Post(1,"Hello,Graphql1","Graphql初體驗(yàn)1","日記");         Post post2 = new Post(2,"Hello,Graphql2","Graphql初體驗(yàn)2","日記");         Post post3 = new Post(3,"Hello,Graphql3","Graphql初體驗(yàn)3","日記");         List<Post> posts = Lists.newArrayList(post1,post2,post3);          User user1 = new User(1,"zhangsan","張三","zhangsan@qq.com");         User user2 = new User(2,"lisi","李四","lisi@qq.com");          user1.setPosts(posts);         user2.setPosts(posts);           userList.add(user1);         userList.add(user2);      }  }

基于Graphql的查詢需要實(shí)現(xiàn) GraphQLQueryResolver接口,由于為了便于演示我們并沒有引入數(shù)據(jù)層,請大家知悉。

配置Graphql 端點(diǎn)

server.port = 8080 graphql.servlet.corsEnabled=true # 配置端點(diǎn) graphql.servlet.mapping=/graphql graphql.servlet.enabled=true

配置完端口和端點(diǎn)后我們就可以對我們編寫的Graphql接口進(jìn)行測試了。

接口地址為:localhost:8080/graphql

測試

這里我使用的是Chrome瀏覽器的 Altair Graphal  Client插件,當(dāng)然你還可以使用其他的客戶端工具,如:graphql-playground。

安裝插件

瀏覽器輸入chrome://extensions/,在擴(kuò)展中心搜索Altair后即可添加至瀏覽器。

SpringBoot開發(fā)中集成Graphql Query是怎樣的

查詢

啟動SpringBoot項(xiàng)目,然后在打開的Altair插件界面,輸入Graphql端點(diǎn)  http://localhost:8080/graphql,然后點(diǎn)擊 Docs,將鼠標(biāo)移至需要的查詢上,點(diǎn)擊 ADD QUERY 即可添加對應(yīng)的查詢。

SpringBoot開發(fā)中集成Graphql Query是怎樣的

點(diǎn)擊Send Request 即可看到查詢結(jié)果:

SpringBoot開發(fā)中集成Graphql Query是怎樣的

然后我們在Query中可以根據(jù)我們的需要新增或刪除接口字段并重新請求接口,會看到響應(yīng)結(jié)果中也會根據(jù)我們的請求自動返回結(jié)果:

SpringBoot開發(fā)中集成Graphql Query是怎樣的

小結(jié)

Graphql支持的數(shù)據(jù)操作有:

  • 查詢(Query):獲取數(shù)據(jù)的基本查詢。

  • 變更(Mutation):支持對數(shù)據(jù)的增刪改等操作。

  • 訂閱(Subscription):用于監(jiān)聽數(shù)據(jù)變動、并靠websocket等協(xié)議推送變動的消息給對方。

SpringBoot開發(fā)中集成Graphql Query是怎樣的


看完上述內(nèi)容,你們對SpringBoot開發(fā)中集成Graphql Query是怎樣的有進(jìn)一步的了解嗎?如果還想了解更多知識或者相關(guān)內(nèi)容,請關(guān)注億速云行業(yè)資訊頻道,感謝大家的支持。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI