DEV Community

Cover image for Advanced Error Handling in Spring Boot Microservices
Bishwa Poudel
Bishwa Poudel

Posted on • Originally published at blog.bishwapoudel.com.np

Advanced Error Handling in Spring Boot Microservices

In complex microservices, advanced error handling goes beyond simple exception logging. Effective error handling is crucial for reliability, scalability, and maintaining good user experience. This article will cover advanced techniques for error handling in Spring Boot microservices, focusing on strategies for managing errors in distributed systems, handling retries, creating custom error responses, and logging errors in a way that facilitates debugging.

1. Basic Error Handling in Spring Boot

Let’s start with a foundational error handling approach in Spring Boot to set up a baseline.

1.1 Using @ControllerAdvice and @ExceptionHandler

Spring Boot provides a global exception handler with @ControllerAdvice and @ExceptionHandler. This setup lets us handle exceptions across all controllers in one place.

@RestControllerAdvice
public class GlobalExceptionHandler {

    @ExceptionHandler(ResourceNotFoundException.class)
    public ResponseEntity<ErrorResponse> handleResourceNotFound(ResourceNotFoundException ex) {
        ErrorResponse error = new ErrorResponse("NOT_FOUND", ex.getMessage());
        return new ResponseEntity<>(error, HttpStatus.NOT_FOUND);
    }

    @ExceptionHandler(Exception.class)
    public ResponseEntity<ErrorResponse> handleGeneralException(Exception ex) {
        ErrorResponse error = new ErrorResponse("INTERNAL_SERVER_ERROR", "An unexpected error occurred.");
        return new ResponseEntity<>(error, HttpStatus.INTERNAL_SERVER_ERROR);
    }
}
Enter fullscreen mode Exit fullscreen mode

Here, ErrorResponse is a custom error model:

public class ErrorResponse {
    private String code;
    private String message;

    // Constructors, Getters, and Setters
}
Enter fullscreen mode Exit fullscreen mode

1.2 Returning Consistent Error Responses

Ensuring all exceptions return a consistent error response format (e.g., ErrorResponse) helps clients interpret errors correctly.


2. Advanced Techniques for Error Handling

2.1 Centralized Logging and Tracking with Error IDs

Assigning a unique error ID to each exception helps track specific errors across services. This ID can also be logged alongside exception details for easier debugging.

@ExceptionHandler(Exception.class)
public ResponseEntity<ErrorResponse> handleGeneralException(Exception ex) {
    String errorId = UUID.randomUUID().toString();
    log.error("Error ID: {}, Message: {}", errorId, ex.getMessage(), ex);

    ErrorResponse error = new ErrorResponse("INTERNAL_SERVER_ERROR", 
                                             "An unexpected error occurred. Reference ID: " + errorId);
    return new ResponseEntity<>(error, HttpStatus.INTERNAL_SERVER_ERROR);
}
Enter fullscreen mode Exit fullscreen mode

Clients receive an error response containing errorId, which they can report back to support, linking them directly to the detailed logs.

2.2 Adding Retry Logic for Transient Errors

In distributed systems, transient issues (like network timeouts) can be resolved with a retry. Use Spring’s @Retryable for retry logic on service methods.

Setup

First, add Spring Retry dependency in your pom.xml:

<dependency>
    <groupId>org.springframework.retry</groupId>
    <artifactId>spring-retry</artifactId>
</dependency>
Enter fullscreen mode Exit fullscreen mode

Then, enable Spring Retry with @EnableRetry and annotate methods that need retries.

@EnableRetry
@Service
public class ExternalService {

    @Retryable(
        value = { ResourceAccessException.class },
        maxAttempts = 3,
        backoff = @Backoff(delay = 2000))
    public String callExternalService() throws ResourceAccessException {
        // Code that calls an external service
    }

    @Recover
    public String recover(ResourceAccessException e) {
        log.error("External service call failed after retries.", e);
        return "Fallback response due to error.";
    }
}
Enter fullscreen mode Exit fullscreen mode

This configuration retries the method up to 3 times, with a delay of 2 seconds between attempts. If all attempts fail, the recover method executes as a fallback.

2.3 Using Feign Client with Fallback in Microservices

For error handling in service-to-service calls, Feign provides a declarative way to set up retries and fallbacks.

Feign Configuration

Define a Feign client with fallback support:

@FeignClient(name = "inventory-service", fallback = InventoryServiceFallback.class)
public interface InventoryServiceClient {
    @GetMapping("/api/inventory/{id}")
    InventoryResponse getInventory(@PathVariable("id") Long id);
}

@Component
public class InventoryServiceFallback implements InventoryServiceClient {

    @Override
    public InventoryResponse getInventory(Long id) {
        // Fallback logic, like returning cached data or an error response
        return new InventoryResponse(id, "N/A", "Fallback inventory");
    }
}
Enter fullscreen mode Exit fullscreen mode

This approach ensures that if inventory-service is unavailable, the InventoryServiceFallback kicks in with a predefined response.


3. Error Logging and Observability

3.1 Centralized Logging with ELK Stack

Configure an ELK (Elasticsearch, Logstash, Kibana) stack to consolidate logs from multiple microservices. With a centralized logging system, you can easily trace issues across services and view logs with associated error IDs.

For example, configure log patterns in application.yml:

logging:
  pattern:
    console: "%d{yyyy-MM-dd HH:mm:ss} [%thread] %-5level %logger{36} - %msg%n"
Enter fullscreen mode Exit fullscreen mode

3.2 Adding Trace IDs with Spring Cloud Sleuth

In distributed systems, tracing a single transaction across multiple services is critical. Spring Cloud Sleuth provides distributed tracing with unique trace and span IDs.

Add Spring Cloud Sleuth in your dependencies:

<dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-starter-sleuth</artifactId>
</dependency>
Enter fullscreen mode Exit fullscreen mode

4. Custom Error Handling for REST APIs

4.1 Creating Custom Exception Classes

Define custom exceptions to provide more specific error handling.

public class InvalidRequestException extends RuntimeException {
    public InvalidRequestException(String message) {
        super(message);
    }
}
Enter fullscreen mode Exit fullscreen mode

4.2 Custom Error Response Structure

Customize error responses by implementing ErrorAttributes for structured and enriched error messages.

@Component
public class CustomErrorAttributes extends DefaultErrorAttributes {

    @Override
    public Map<String, Object> getErrorAttributes(
            WebRequest webRequest, ErrorAttributeOptions options) {
        Map<String, Object> errorAttributes = super.getErrorAttributes(webRequest, options);
        errorAttributes.put("timestamp", LocalDateTime.now());
        errorAttributes.put("customMessage", "An unexpected error occurred");
        return errorAttributes;
    }
}
Enter fullscreen mode Exit fullscreen mode

Register CustomErrorAttributes in your configuration to automatically customize all error responses.

4.3 API Error Response Standardization with Problem Details (RFC 7807)

Use the Problem Details format for a standardized API error structure. Define an error response model based on RFC 7807:

public class ProblemDetailResponse {
    private String type;
    private String title;
    private int status;
    private String detail;
    private String instance;

    // Constructors, Getters, and Setters
}
Enter fullscreen mode Exit fullscreen mode

Then, return this structured response from the @ControllerAdvice methods to maintain a consistent error structure across all APIs.

@ExceptionHandler(InvalidRequestException.class)
public ResponseEntity<ProblemDetailResponse> handleInvalidRequest(InvalidRequestException ex) {
    ProblemDetailResponse error = new ProblemDetailResponse(
        "https://example.com/errors/invalid-request",
        "Invalid Request",
        HttpStatus.BAD_REQUEST.value(),
        ex.getMessage(),
        UUID.randomUUID().toString()
    );
    return new ResponseEntity<>(error, HttpStatus.BAD_REQUEST);
}
Enter fullscreen mode Exit fullscreen mode

5. Circuit Breakers for Resilience

Integrating a circuit breaker pattern protects your microservice from repeatedly calling a failing service.

Using Resilience4j Circuit Breaker
Add Resilience4j to your dependencies:

<dependency>
    <groupId>io.github.resilience4j</groupId>
    <artifactId>resilience4j-spring-boot2</artifactId>
</dependency>
Enter fullscreen mode Exit fullscreen mode

Then, wrap a method with a circuit breaker:

@CircuitBreaker(name = "inventoryService", fallbackMethod = "inventoryFallback")
public InventoryResponse getInventory(Long id) {
    // Call to external service
}

public InventoryResponse inventoryFallback(Long id, Throwable ex) {
    log.warn("Fallback due to error: {}", ex.getMessage());
    return new InventoryResponse(id, "N/A", "Fallback inventory");
}
Enter fullscreen mode Exit fullscreen mode

This setup stops calling getInventory if it fails multiple times, and inventoryFallback returns a safe response instead.


Conclusion

Advanced error handling in Spring Boot microservices includes:

Centralized error handling for consistent responses and simplified debugging.
Retries and circuit breakers for resilient service-to-service calls.
Centralized logging and traceability with tools like ELK and Sleuth.
Custom error formats with Problem Details and structured error responses.
These techniques help ensure your microservices are robust, providing consistent, traceable error responses while preventing cascading failures across services.

Top comments (0)