Getting Started with JSON
This post will walk through JSON basic concepts. What is JSON? JSON (JavaScript Object Notation) is a lightweight data-interchange format, widely hailed as the successor to XML in the browser. It is...
View ArticleSpring MVC and AJAX with JSON
This tutorial will walk through how to configure Spring MVC to return a JSON object to client browser. One of the main decisions to be taken while developing AJAX applications is the format of messages...
View ArticlePopulating an ExtJS DataGrid + RowExpander using Spring MVC 3
This tutorial will walk through how to implement an ExtJS DataGrid with RowExpander plugin using Spring MVC Framework version 3 in the server side. Sometimes you need to show more information than fits...
View ArticleHow to Populate Ext JS ComboBox using Spring Controller
This tutorial will walk through how to populate an ExtJS ComboBox using a Spring Controller. To populate ExtJS ComboBox using Spring Controller, you need create an Ajax request using Ext.data.HttpProxy...
View ArticleHow to Serialize Java.util.Date with Jackson JSON Processor / Spring 3.0
Quick tip: how to serialize a java.util.Date object with Jackson JSON Processor – Sprinv MVC 3. Scenario: I have the following Java Bean: And I have the following method in my controller: Which returns...
View Article