An investment in knowledge always pays the best interest
Benjamin franklin
- Technical Blogs (15)
- Thoughts (2)
-
Todo App – Java Quarkus
First of all lets bootstrap a new application using Quarkus – Start coding with code.quarkus.io. I chose Maven as build tool and added the below extensions. RESTEasy Jackson – Provides dependencies that helps us to create Restful APIs , serialize/de-serialize JSON to Java and vice-versa, etc. Consider it equivalent to spring-boot-starter-web dependency in a SpringMore
-
Jackson – deserialization of Integer to Enum
Problem Statement: I work in a Restful micro-service which is kind of a delegator or an orchestrator API on top of many other micro-services. Majority of the application logic lies in mapper classes that maps requests and responses to and from different dependent APIs. Having a clean and readable set of POJOs is a pre-requisiteMore