Publish-Subscribe Messaging systems play an important role in any microservices enterprise architecture as it enables reliable integration without tightly coupling the applications. The ability to share data between decoupled systems is not a problem that is easily tackled. Consider an enterprise with multiple applications that are being built independently, with different languages and platforms. It […]
This post aims to demonstrate key Java @annotations used to build a functional Spring Boot Rest API. The use of Java annotation gives developers the capability to reduce the code verbosity by a simple annotation. As an example, we can refer to a transaction. By the standard programmatically process with a transaction template, this requires […]
Within the universe of microservices security mechanisms, the access to information or resources “on behalf of”; allows third parties (a particular application or service) to communicate with other applications or services, acting on behalf of, and not while the application or service. Authorization to third parties using the traditional model, where the client accesses a […]