0Pricing
GraphQL APIs with Spring Boot · Урок

Пользовательская обработка ошибок в GraphQL

Реализуйте обработку пользовательских исключений и форматируйте ответы с ошибками в соответствии с лучшими практиками GraphQL.

«Пользовательская обработка ошибок в GraphQL» — бесплатный урок GraphQL APIs with Spring Boot на CoddyKit. Это урок 1 из 4. Ты можешь прочитать весь урок бесплатно ниже — а потом практиковать его прямо в браузере с встроенным редактором кода и ИИ-репетитором 24/7. Это часть пути обучения GraphQL APIs with Spring Boot, и твой прогресс синхронизируется между веб-версией и приложением CoddyKit. Курс GraphQL APIs with Spring Boot содержит 4 уроков всего.

Части этого урока еще не переведены и отображаются на английском.

Understanding GraphQL Errors

When something goes wrong in a GraphQL operation, the server typically returns an errors array in the response. This array contains objects describing what went wrong.

By default, these error messages can be generic or even expose sensitive internal details like stack traces, which isn't ideal for production APIs.

Spring GraphQL's Default Behavior

Out-of-the-box, Spring GraphQL often maps Java exceptions (like RuntimeException) thrown by your data fetchers into a standard DataFetchingException. While functional, this default behavior might not provide the specific, user-friendly details your clients need.

Why Customize Error Responses?

Customizing error handling offers significant benefits:

  • Improved UX: Provide clear, actionable messages for end-users.
  • Enhanced Security: Prevent exposure of sensitive internal information (e.g., database errors, full stack traces).
  • Client-Side Logic: Include custom error codes or details that frontend applications can use to react specifically to different error types.

Meet DataFetcherExceptionResolver

In Spring GraphQL, the primary way to customize error responses is by implementing the DataFetcherExceptionResolver interface. This powerful interface allows you to intercept any exception thrown by a data fetcher and transform it into a structured GraphQLError object.

Define Your Custom Error

First, let's create a simple custom exception. This helps categorize specific error scenarios in your application. For example, a ResourceNotFoundException:

public class ResourceNotFoundException extends RuntimeException {
  private final String resourceId;

  public ResourceNotFoundException(String message, String resourceId) {
    super(message);
    this.resourceId = resourceId;
  }

  public String getResourceId() {
    return resourceId;
  }
}

Building Your Custom Resolver

Now, we'll create a class that implements DataFetcherExceptionResolver. This class will inspect the thrown exception and build a custom GraphQLError, potentially adding specific details via extensions.

import graphql.GraphQLError;
import graphql.execution.DataFetcherExceptionHandler;
import graphql.execution.DataFetcherExceptionHandlerParameters;
import graphql.execution.DataFetcherExceptionHandlerResult;
import graphql.error.ErrorType;
import java.util.HashMap;
import java.util.Map;

public class CustomExceptionResolver implements DataFetcherExceptionHandler {
  @Override
  public DataFetcherExceptionHandlerResult onException(
      DataFetcherExceptionHandlerParameters handlerParameters) {
    Throwable exception = handlerParameters.getException();

    if (exception instanceof ResourceNotFoundException) {
      ResourceNotFoundException rnfEx = (ResourceNotFoundException) exception;
      Map<String, Object> extensions = new HashMap<>();
      extensions.put("errorCode", "NOT_FOUND");
      extensions.put("resourceId", rnfEx.getResourceId());

      GraphQLError error = GraphQLError.newError()
          .message(rnfEx.getMessage())
          .locations(handlerParameters.getSourceLocation())
          .path(handlerParameters.getPath())
          .extensions(extensions)
          .errorType(ErrorType.DataFetchingException)
          .build();

      return DataFetcherExceptionHandlerResult.newResult().error(error).build();
    }
    // Fallback for unhandled exceptions
    return DataFetcherExceptionHandlerResult.newResult()
        .error(GraphQLError.newError()
            .message("An unexpected error occurred.")
            .errorType(ErrorType.DataFetchingException)
            .build())
        .build();
  }
}

Activating Your Custom Resolver

To make Spring GraphQL use your CustomExceptionResolver, you need to register it as a Spring @Bean in your application's configuration. This tells Spring to include it in the GraphQL execution chain.

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import graphql.execution.DataFetcherExceptionHandler;

@Configuration
public class GraphQLConfig {
  @Bean
  public DataFetcherExceptionHandler customDataFetcherExceptionHandler() {
    return new CustomExceptionResolver();
  }
}

See It in Action!

Let's run a simplified Spring Boot app. If you query for an item with an ID other than '1', our custom error resolver will catch the DemoResourceNotFoundException and format the error response with specific details in the extensions field.

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.Bean;
import org.springframework.stereotype.Component;
import graphql.kickstart.tools.GraphQLQueryResolver;
import graphql.execution.DataFetcherExceptionHandler;
import graphql.execution.DataFetcherExceptionHandlerParameters;
import graphql.execution.DataFetcherExceptionHandlerResult;
import graphql.GraphQLError;
import graphql.error.ErrorType;
import java.util.HashMap;
import java.util.Map;

// Main Application Class
@SpringBootApplication
public class ErrorDemoApp {
  public static void main(String[] args) {
    SpringApplication.run(ErrorDemoApp.class, args);
  }

  @Bean
  public GraphQLQueryResolver queryResolver() {
    return new DemoQueryResolver();
  }

  @Bean
  public DataFetcherExceptionHandler customDataFetcherExceptionHandler() {
    return new CustomErrorResolver();
  }

  // Custom Exception
  static class DemoResourceNotFoundException extends RuntimeException {
    private final String resourceId;
    public DemoResourceNotFoundException(String msg, String id) {
      super(msg); this.resourceId = id;
    }
    public String getResourceId() { return resourceId; }
  }

  // Data Fetcher
  @Component
  static class DemoQueryResolver implements GraphQLQueryResolver {
    public String getItem(String id) {
      if ("1".equals(id)) {
        return "Item Found: " + id;
      }
      throw new DemoResourceNotFoundException("Item not found", id);
    }
  }

  // Custom Error Resolver
  @Component
  static class CustomErrorResolver implements DataFetcherExceptionHandler {
    @Override
    public DataFetcherExceptionHandlerResult onException(
        DataFetcherExceptionHandlerParameters params) {
      Throwable ex = params.getException();
      if (ex instanceof DemoResourceNotFoundException) {
        DemoResourceNotFoundException rnfEx = (DemoResourceNotFoundException) ex;
        Map<String, Object> ext = new HashMap<>();
        ext.put("code", "ITEM_NOT_FOUND");
        ext.put("itemId", rnfEx.getResourceId());
        GraphQLError error = GraphQLError.newError()
            .message(rnfEx.getMessage())
            .locations(params.getSourceLocation())
            .extensions(ext)
            .errorType(ErrorType.DataFetchingException)
            .build();
        return DataFetcherExceptionHandlerResult.newResult().error(error).build();
      }
      return DataFetcherExceptionHandlerResult.newResult()
          .error(GraphQLError.newError()
              .message("Unexpected error")
              .errorType(ErrorType.DataFetchingException)
              .build())
          .build();
    }
  }
}

Error Extensions for Context

The extensions map within a GraphQLError is a powerful feature. It allows you to include custom, machine-readable data (like errorCode, resourceId, or validation errors) that clients can use for advanced error handling logic, beyond just the human-readable message.

Best Practices for Errors

To ensure robust error handling in your GraphQL API:

  • Be Specific: Use distinct custom exceptions for different error types.
  • Hide Internals: Never expose raw stack traces or database errors in production environments.
  • Consistent Format: Ensure your custom errors always follow a predictable structure.
  • Client-Friendly: Provide clear messages and actionable codes for frontend logic.

Quick Check: Error Handling

Which interface is primarily used in Spring GraphQL to customize how Java exceptions are transformed into GraphQLError objects?

Recap: Custom Error Handling

We learned how to move beyond default GraphQL error messages by implementing custom exception handling in Spring Boot. You can create custom exceptions, use the DataFetcherExceptionResolver to catch them, and format precise GraphQLError objects with useful extensions. This improves API security, user experience, and client-side error management.

Часто задаваемые вопросы

Урок «Пользовательская обработка ошибок в GraphQL» бесплатный?

Да — полный текст урока «Пользовательская обработка ошибок в GraphQL» бесплатно доступен здесь в веб-версии. Чтобы практиковать его интерактивно (встроенный редактор кода и ИИ-репетитор 24/7) и разблокировать остальной курс GraphQL APIs with Spring Boot, подпишись на CoddyKit PRO. Курс GraphQL APIs with Spring Boot содержит 4 уроков всего.

Чему я научусь в уроке «Пользовательская обработка ошибок в GraphQL»?

Реализуйте обработку пользовательских исключений и форматируйте ответы с ошибками в соответствии с лучшими практиками GraphQL. Ты практикуешь GraphQL APIs with Spring Boot с помощью реального кода, который запускаешь прямо в браузере, и ИИ-репетитор 24/7 отвечает на твои вопросы во время урока.

Нужен ли мне опыт, чтобы начать GraphQL APIs with Spring Boot?

Предыдущий опыт не требуется. GraphQL APIs with Spring Boot на CoddyKit структурирован для всех уровней — от новичков до продвинутых, поэтому ты можешь начать отсюда или с самого начала и учиться в своем темпе. Это урок 1 из 4.

Сколько времени занимает урок «Пользовательская обработка ошибок в GraphQL»?

Большинство уроков CoddyKit занимают около 5–10 минут. Каждый из них компактный и интерактивный, поэтому ты постоянно делаешь прогресс и продолжаешь с того же места в веб-версии и приложении.

Можно ли писать и запускать код в этом уроке GraphQL APIs with Spring Boot?

Да. Каждый урок GraphQL APIs with Spring Boot включает встроенный редактор кода, поэтому ты пишешь и запускаешь реальный код прямо в браузере и получаешь моментальную обратную связь от AI — локальная установка не требуется.

Все уроки этого курса

  1. Пользовательская обработка ошибок в GraphQL
  2. Аутентификация с Spring Security
  3. Авторизация с директивами и контекстом
  4. Ограничение частоты запросов и защита от чрезмерной глубины
← Назад к GraphQL APIs with Spring Boot