Tips &Tutorials Resource

Guides, Advice, Tips etc...

Spring Batch Example

This is a basic guide to get you started with Spring Batch Framework. The framework has alot to get your head around. Key Terms with references

  • Job - Contains steps for the process execution (describes what job is and how it is executed). It is entire set of batch work.
  • Job Instance - Represents the given job during the execution process (organises the job process with job parameters)
  • Job
Read More

HTML Tips & Tricks

How to Open a Link in a New Window You can open a link in a new window using HTML. This is a little better than JavaScript as it will work whether the browser has JavaScript enabled or not. You implement this by adding the text target=”_blank” to your anchor tag that you want Read More

LESS

LESS - The dynamic stylesheet language that extends CSS with dynamic behavior. It allows flexibility when creating the stylesheets. LESS runs on both the client-side (IE6+, Firefox etc..) and server-side. LESS was developed by Alexis Sellier known as cloudhead. In this quick basic guide I will be discussing only how to use LESS on client-side. With Read More