
本文档旨在指导开发者如何使用 Spring Boot 构建 GraphQL 客户端,并重点解决如何向 GraphQL 服务传递对象列表进行查询的问题。我们将通过示例代码演示如何配置 GraphQLTemplate,并展示如何构建包含对象列表的请求,最后给出最佳实践建议,帮助读者高效地进行 GraphQL 客户端开发。
在使用 Spring Boot 构建 GraphQL 客户端时,一个常见的需求是向 GraphQL 服务传递对象列表作为查询参数。本文将介绍如何使用 GraphQLTemplate 来实现这一目标,并提供详细的代码示例和注意事项。
GraphQLTemplate 是一个方便的工具,可以简化与 GraphQL 服务的交互。以下是如何使用它来发送包含对象列表的查询:
首先,确保你的项目中引入了 com.github.americanexpress:nodes 依赖。在 pom.xml 文件中添加以下内容:
<dependency>
    <groupId>com.github.americanexpress</groupId>
    <artifactId>nodes</artifactId>
    <version>0.5.0</version>
</dependency>构建 GraphQLRequestEntity 时,需要正确设置变量,将对象列表作为参数传递。以下是一个示例:
import com.americanexpress.nodes.graphql.GraphQLRequestEntity;
import com.americanexpress.nodes.graphql.GraphQLTemplate;
import com.americanexpress.nodes.graphql.Variable;
import org.springframework.stereotype.Service;
import java.net.MalformedURLException;
import java.util.Arrays;
import java.util.List;
import java.math.BigInteger;
@Service
public class PersonService {
    private final GraphQLTemplate graphQLTemplate = new GraphQLTemplate();
    private final String url = "http://localhost:8084/graphql";
    public List<Person> getPersonsByIds(List<BigInteger> personIds) {
        GraphQLRequestEntity requestEntity;
        try {
            requestEntity = GraphQLRequestEntity.Builder()
                .url(url)
                .requestMethod(GraphQLTemplate.GraphQLMethod.QUERY)
                .request("query($personIds: [BigInteger]) {\n" +
                    "  getPersonsByIds(personIds : $personIds ) {\n" +
                    "    firstName\n" +
                    "    middleName\n" +
                    "    lastName\n" +
                    "    birthDt\n" +
                    "  }\n" +
                    "}"
                )
                .variables(new Variable<>("personIds", personIds))
                .build();
        } catch (MalformedURLException e) {
            throw new RuntimeException(e);
        }
        return graphQLTemplate.query(requestEntity, ResponseGetPersonsByIds.class).getResponse().getGetPersonsByIds();
    }
    public static void main(String[] args) {
        PersonService personService = new PersonService();
        // 示例:传递一个包含两个 ID 的列表
        List<BigInteger> ids = Arrays.asList(new BigInteger("2477142261427744786"), new BigInteger("2477142261427744787"));
        List<Person> persons = personService.getPersonsByIds(ids);
        System.out.println(persons);
    }
}代码解释:
服务端需要定义相应的 GraphQL Schema,包括 Person 类型和 getPersonsByIds 查询。例如:
type Person {
    firstName: String
    middleName: String
    lastName: String
    birthDt: String
}
type Query {
    getPersonsByIds(personIds: [BigInteger]): [Person]
}使用 @SchemaMapping 将 getPersonsByIds 查询映射到 Java 方法。
import org.springframework.graphql.data.method.annotation.Argument;
import org.springframework.graphql.data.method.annotation.QueryMapping;
import org.springframework.stereotype.Controller;
import java.math.BigInteger;
import java.util.List;
@Controller
public class PersonController {
    private final PersonService personService;
    public PersonController(PersonService personService) {
        this.personService = personService;
    }
    @QueryMapping
    public List<Person> getPersonsByIds(@Argument List<BigInteger> personIds) {
        return personService.getPersonsByIdsFromDatabase(personIds); // 假设 personService 有一个从数据库获取数据的方法
    }
}注意事项:
通过使用 GraphQLTemplate 和正确构建 GraphQLRequestEntity,可以方便地向 Spring Boot GraphQL 客户端传递对象列表。 关键在于正确定义 GraphQL 查询语句中的变量类型,并在 variables 中将变量名与实际的对象列表绑定。 同时,需要确保服务端 Schema 定义与客户端请求参数类型一致。
以上就是GraphQL Spring Boot 客户端:处理对象列表的查询的详细内容,更多请关注php中文网其它相关文章!
 
                        
                        每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
 
                Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号