Skip to content

schatterjee4/feign-error-decoder

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build Status MIT license Maven Central

Feign Reflection ErrorDecoder

This small library implements ErrorDecoder to provide a simple way to map a key returned on an API to a specific exception declared thrown on the client interface.

It's very useful in an application with many microservices calling each others when you want to handle specific checked or runtime exceptions on the client side.

Blog post explaining more about the rationale of this library.

Maven

The plugin is available on Maven Central :

    <dependency>
      <groupId>com.coveo</groupId>
      <artifactId>feign-error-decoder</artifactId>
      <version>1.3.0</version>
    </dependency>

Usage

A complete example is shown in this repo as the base setup for the unit tests.

Requirements

Base Exception class

In order to use this library, you need a base exception which all the exceptions declared thrown on the client interface will inherit from. This exception needs to provide a way to access a unique String key per subclass.

public abstract class ServiceException extends Exception {
  private String errorCode;
  //Constructors omitted
  
  public String getErrorCode() {
    return errorCode;
  }
}

Class for the error response

A Class representing the body of the response sent on the API in case of error is also needed. This is the Class that will be instantiated by Feign Decoder. It needs a method to get the key that will be used to get the correct exception. It can also optionally have a message that will be injected in the detailMessage field of Throwable.

public class ErrorCodeAndMessage {
  private String message;
  private String errorCode;
  //getters and setters omitted

How to use

With these requirements met, all left to do is to extend ReflectionErrorDecoder and implement the abstract methods required like this :

import feign.Response;
import feign.codec.ErrorDecoder;

public class ServiceExceptionErrorDecoder
    extends ReflectionErrorDecoder<ErrorCodeAndMessage, ServiceException> {

  public ServiceExceptionErrorDecoder(Class<?> apiClass) {
    super(apiClass, ErrorCodeAndMessage.class, ServiceException.class);
  }

  @Override
  protected String getKeyFromException(ServiceException exception) {
    return exception.getErrorCode();
  }

  @Override
  protected String getKeyFromResponse(ErrorCodeAndMessage apiResponse) {
    return apiResponse.getErrorCode();
  }

  @Override
  protected String getMessageFromResponse(ErrorCodeAndMessage apiResponse) {
    return apiResponse.getMessage();
  }
}

Use the Feign builder to inject the ErrorDecoder in your client.

Supported interface annotations

The supported annotations on the interfaces are Feign's @RequestLine and Spring @RequestMapping. As of version 1.2.0, it also supports @GetMapping, @PostMapping, @PutMapping, @DeleteMapping and @PatchMapping.

Optional customization

Exception inheritance support with classpath scanning

A ClassHierarchySupplier interface is used to support classpath scanning to fetch the hierarchy of abstract exception classes. This allows you to declare a specific base exception as thrown on the client interface and let the interface scan all the possible exceptions that can be thrown.

With Spring

An optional dependency on Spring Context is included in the library to enable this. All you need to do is have Spring framework available in your project and the proper implementation will be instantiated. By default, it will scan the exception children in all packages. To restrict the base package to be scanned, simply use the constructor with the basePackage field.

Without Spring

A default implementation is not provided at the moment. Feel free to submit a PR if you implement it!

Custom Decoder

By default, this project uses the JacksonDecoder implementation of Feign Decoder interface. A protected setter is available to use your own Decoder.

Custom fallback ErrorDecoder

ErrorDecoder.Default is used by default when no exception is found in the scanned exceptions. A protected setter is available to use your own fallback ErrorDecoder.

Supported constructor arguments

The library has a default list of supported argument types for the exception constructors. It supports empty and constructors with any number of String or Throwable in any order. To extend supported exception types, just override the method protected List<Object> getSupportedConstructorArgumentInstances(). Just make sure to return the default types of String and Throwable if you still want them to be supported.

Contributing

PR are always welcome and please open an issue if you find any bugs or wish to request an additional feature.

About

Feign ErrorDecoder to map exceptions based on an error code

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 100.0%