Dependency Injection in AWS Lambda function
In this Article, we will see how to use Guice Dependency injection when working with existing application or service.
Let’s assume we have a service class.
public interface BookService {
List<Book> getBookMetadata();
}
and its implementation
publ...
aparnavikraman.hashnode.dev1 min read