November 7, 2013

SOAP Vs RESTFul for Mobile Services – Which one to use ?

Overview Many enterprises are creating mobile applications for their internal staff, for their customers, or both.  These applications need access to data, business rules, and business […]
January 10, 2019

What value does Serverless and Function As A Service provide?

The idea of functions as a service is not new to the industry. We, being IT professionals, have seen lots of transformations in programming paradigms.
November 15, 2018

Searches in a RESTful interface (GET or POST?)

When designing a RESTful API, the architectural semantics are considered vital to the overall design.
November 8, 2018

New JDK 11 features that I personally like and use

Java Development Kit (JDK) 11 is now generally available bringing some productivity improvements and an HTTP Client API that implements HTTP/2.
November 7, 2018

What value does reactive programming provide?

Industry buzzwords like ‘Microservices’, “Reactive” and “Functional” are obviously not new to the software industry as professionals have been using them to analyze the problems common to […]
March 27, 2017

Why use microservices ? Monolithic vs Microservices style

The term “Microservices” has risen over the last few years describing a way to design software applications as independently deployable services.
February 17, 2017

Why use Spring Boot rather than Spring Boot-less?

When people say, “Spring Boot does everything”, it’s not clear what “everything” is. If you are a java developer, there is a high probability that you […]
August 10, 2015

Why Use Spring for Java Projects ?

What is Spring ? Spring is a framework that helps you to “wire” different components together. It is most useful in cases where you have a […]
May 28, 2015

Microsoft SQL Server vs. Oracle: The Same, But Different?

There are many different relational database management systems (RDBMS) out there. You have probably heard about Microsoft Access, Sybase, and MySQL, but the two most popular and […]
January 16, 2015

The famous java == and .equals()

In Java, there is a difference between java == and equals() method to compare primitives (int, float etc), strings and objects. This is a short article […]