AWSTechnology

Platform as a Service (PaaS) – Introduction

Platform as a service (PaaS) :  a cloud computing model which allows user to deliver applications over the Internet. In a this model, a cloud provider provides hardware ( like IaaS ) as well as software tools which  are usually needed for development of required Application to its users. The hardware and software tools are […]

Technology

Logging with Spring AOP and Custom Annotations In JAVA Application

Whenever i am working on development of any application I want to log every execution of a method, seeing what arguments it receives, what it returns for easy debugging and how much time every execution take. So we have created a utility based on Spring AOP and here we will see how we can use […]

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 […]

Manual TestingTechnologyTesting

How to Perform Database Testing?

In the previous blogs, Overview of Database Testing and What should we test in a Database we got a fair idea about database testing concepts and types of database testing. Now with this blog, we are moving a step ahead to enhance our knowledge by defining the keys steps that will help in performing “Database Testing” DBMS […]

Manual TestingTechnologyTesting

What Should We Test in Database?

In the previous blog on Overview of Database Testing, we had discussed the basic concepts like database, database testing, the need for database testing and how to perform database testing. In this blog, we will be diving deep into the world of database testing and throw some light on what we need to test in […]

MobilityTechnology

Ten Things must be done for an eCommerce Application

Ecommerce Architecture If you want to jump in ecommerce application you need to focus its architecture and design adaptively of application. Ecommerce application always categories in two parts native app and hybrid app. Hybrid App – In Hybrid app development always become very challenging task for developer due to less community, less documentation and less […]

AngularJSFront End DevelopmentTechnology

React JS vs Angular 2

In this blog we are going to discuss in summary, difference between the two most popular JS (library/framework) i.e Angular 2 and React JS On the very first note, React JS is just a library and Angular 2 is a whole framework (which is still undergoing changes). But we can have a comparison for both. 1. Component: […]

Technology

Mongo Case Insensitive InList Query

As we know in Mongo the match queries are case sensitive. So whether we do a find() operation or use $match stage of aggregate pipeline, the condition would be true only if its a exact case sensitive match. Of cource we can use regex to do case insensitive queries but then again it will not […]

GrailsTechnology

Using Hibernate Events with PersistenceEventListener

In my last blog, we discussed how to hook into GORM API to add some common custom functionality. We will refer the same problem that we discussed in my last blog. Here is the problem statement: In my grails plugin I was needed to add some fields that were common to a set of domains. […]