integration

a woman with green hair looking at the camera

How to do Lambda-Proxy Integrations

Reading Time: 4 minutes Hello Readers!! We are again back with a new topic. In this blog, we will see how to do lambda-proxy integrations. Before this, we will see what is lambda-proxy integrations and why we need them.  What are lambda-proxy integrations? AWS Lambda-proxy integration is a type of integration for Amazon API Gateway that allows a single AWS Lambda function to handle multiple HTTP requests and routes. Continue Reading

Integrating A Springboot Application with MarkLogic as backend service in easy way.

Reading Time: 3 minutes In this article, I am going to show you how to use Spring Boot as a RESTful web service and MarkLogic as a backend database and how to do marklogic integration with springboot application Introduction Assuming that you have a Springboot application which uses MarkLogic as backend service, this guide will show you how to integrate your application with MarkLogic. The first thing you need Continue Reading

European handicapped girl in vr glasses on sofa at home. Healing technology, robotic limb.

Service discovery using SmallRye Stork with Quarkus

Reading Time: 2 minutes In this era of microservice based architecture where multiple services are interacting with each other to carry out a transaction, service discovery becomes an integral part as it provides a mechanism to register and find the services. However, it leads to another issue which is “How to select the right service instance in case we have multiple instances of a service running?” . SmallRye Stork Continue Reading

Apache Camel (An Integration Framework Tool)

Reading Time: 4 minutes The Blog covers a basic introduction to the tool Apache Camel and its necessary features. Let us begin with a basic understanding of the need for the tool Apache Camel. Introduction to Apache Camel Technically, Apache Camel is an Integration Framework. In order to understand the tool Apache Camel, it is important to understand the concept of Integration first. Integration, in technical terms, refers to Continue Reading

Integration testing using H2Database

Reading Time: 3 minutes Need of Integration Testing For doing unit tests, We use to do mocking. Consider we call getUser(), it calls the DAO that’s been mocked and returns “John” for the name and “21” for the age, assembles them and everything is perfect. No need to actually unit test a database there.What if there is any bug in database operations. If you mocked the database you can Continue Reading