REST API using Quarkus, AWS Lambda, DynamoDB, and Serverless Framework
Function as a service (FaaS) is a serverless way to execute modular pieces of code on the edge. A Serverless architecture allows users to write and deploy …
Function as a service (FaaS) is a serverless way to execute modular pieces of code on the edge. A Serverless architecture allows users to write and deploy …
Integration testing is an important part of the Software Testing Life cycle as it helps identify system-level issues such as a broken database schema, incorrect …
Representational state transfer (REST), a term coined by Roy Fielding in 2000, is a software architectural style that defines a set of constraints to be used for creating Web services. Web services …
HashMap is a Map-based collection class that is used for storing key and value pairs. It is not an ordered collection which means it does …
Undertow is an extremely lightweight flexible performant web server written in java, providing both blocking and non-blocking API’s based on NIO. Jetty is another lightweight embeddable …
Open any Java class file in a hex editor and you will notice that it begins(the first four bytes) with the hex code CA FE …