February 11, 2019

Groovy - What is Memoization?

Memoization (a.k.a tabling) is a technique in programming where the result of a function call is stored in cache and when the function is subsequently called with the same parameters, the result is returned from the cache instead of executing the function again. Read More
by Phee Jay

February 01, 2019

Groovy - How to read and write to excel sheets with Groovy?

Scriptom provides a simple COM library for Groovy. It is a Groovy wrapper around JACOB (Java COM Bridge) which provides access to COM Automation components. Scriptom can be used to work with MS Office tools, Internet Explorer or any other Microsoft Windows COM based components. In this article, you will use Scriptom to read and write to excel files. Read More
by Phee Jay

January 28, 2019

Spring MVC - How to handle errors from a controller?

In a web application, it is very important to handle errors. Proper error handling would protect the application from several vulnerabilities, including Security Misconfiguration . In this post, you will see how you can handle exceptions that arise out of a Spring MVC based application. Read More
by Phee Jay

January 25, 2019

Java - How to find the IP Address of a host in Java ?

In Java, if you are looking to resolve an IP Address from the given hostname, then you can leverage the capabilities provided by InetAddress . It belongs to the "java.net" package and provides various utilities related to resolving addresses and IPs. Read More
by Phee Jay

September 02, 2017

Spring - Initializing a Spring Bean

In Spring, it's often necessary to run custom code during a bean's initialization—for example, to validate mandatory properties or establish initial connections. Spring offers several mechanisms to initialize beans after they’ve been injected with their properties. Read More
by Phee Jay

August 04, 2017

Groovy - Setting Up Sublime Text to Run Groovy Scripts

Groovy is a powerful scripting language that builds on Java, making it easier to write concise and expressive scripts. Sublime Text, a highly customizable text editor, can be configured to execute Groovy scripts, streamlining your workflow. This guide will walk you through the steps to set up Sublime Text to run Groovy scripts on your system. Read More
by Phee Jay

August 03, 2017

Groovy - How to Read Files in Groovy?

This article shows various ways of reading a text file in groovy. Read More
by Phee Jay

August 01, 2017

JS - How to Create Web Notifications

Web Notifications provide ways for websites to display notifications to users e.g. alerting the user about a business event or success/failure of an asynchronous operation. Read More
by Phee Jay