Saturday, November 29, 2014

Java Object Class


Java Object Class is the root of the class hierarchy. Every class has Object as a superclass. All objects, including arrays, implement the methods of this class.

Wednesday, April 2, 2014

Spring Mvc Hello World Example With Annotation

We are going to create a spring mvc base example with annotations in eclipce.
In this example we will print a message "Hello World" on screen and will handle some common errors like 404 (URL not found) or 500 (internal server error).

Thursday, February 27, 2014

Mustache HTML template

1. Introduction of mustache HTML template : Mustache is a logic less HTML template. Why logic less? because it does not have if-else conditions or loops.
 

Mustache is simply a js library that read JSON data and display it using mustache templates.Mustache template use tags to display json data.
Mustache tags are indicated by double curly braces "{{mustache tag}}".
It reduce our efforts in HTML coding because we can use same mustache template again and again.