AWSDevOpsJava/JVM

Introduction to Wildfly

Wildfly, previously known as JBoss AS, is a fully implemented JEE container – application server, authored by JBoss Incorporated.  In 2006, JBoss Inc was acquired by Red Hat and since then Wildfly became their product. Wildfly is production ready, cross-platform and open-source application server with paid support subscription from Red Hat. The latest version being […]

Krishna Gupta
Krishna Gupta
Read

Java/JVMTechnology

An overview of Spring Boot

I have come up with this blog that outlines: What is Spring Boot? Why do we use it? How to get started? 1. What is Spring Boot? Spring boot from Spring is just another project enabling developers to create stand-alone, production-grade Spring based applications. 2. Why do we use it? Create stand-alone Spring applications Embed Tomcat, […]

Ravi Kumar
Ravi Kumar
Read

AWSDevOpsJava/JVM

AWS SES Integration for Java Applications

Use Case I came across a use-case, where I had to integrate Amazon Simple Email Service (SES) to send transactional emails from a JAVA application using my own registered domain. This blog will guide the reader through the basic steps required for setting up or integrating Amazon SES with my JAVA application. About Amazon SES […]

Mayank Negi
Mayank Negi
Read

Java/JVMTechnology

Observer Design Pattern

Observer Design Pattern When we build applications using object oriented paradigm, we try to develop each of our component independent of all other component that exist in our system. Although component independency fixes a lot of problem and it’s very convenient, but sometime it makes difficult to establish interaction between these independent component. So the […]

Ajay Kumar
Ajay Kumar
Read

AgileAWSDevOps

CloudFoundry PaaS – Introduction

Cloudfoundry: Open Source Platform as a Service A platform used for running applications and services. The purpose of cloudfoundry is to change the way apps and services are deployed and run by reducing the cycle time of development to deployment. Cloud Foundry directly takes benefits of cloud-based resources such that apps running on the platform […]

Java/JVMTechnology

Make your REST API compatible with Internet Explorer

You might wonder when you find your REST API’s are working properly in all browsers and rest clients but not in IE. I got the same issue in my project. I am sharing the issue and solution with you so that you can resolve it if you get the same. In rest APIs, I had some […]

GrailsJava/JVMTechnology

Getting Started With Azure Blob Service Using Grails

Many of you already know about Microsoft Azure, which is a cloud based computing platform infrastructure for deploying, and managing applications and services globally. One of its most useful service is the blob service, which is a service for storing large amounts of unstructured data, whether text or binary data which is easily accessible from […]

Java/JVMSoftware developmentTechnology

Java Arrays Comparison: Use equals or deepEquals?

The equals Method return True if the two arrays are equal to one another if both arrays contain equal number of elements and corresponding elements are also equal. If both arrays are null then they are also considered as equal.  The equals method is used with Hashcode method to find the bucket of arrays. Two […]

Java/JVMSoftware developmentTechnology

How to execute Java code within Java comments

We all know Java comments are not visible to compiler and are not executable. But here we will see how a comment can be executed. To execute any comment we need to append a unicode as prefix to that comment and thats it. Now when you will run the code then this comment line will […]

Services