You have arrived at the 404 page!!!
This is not the page you are looking for ...... well, that is rather obvious. No one really looks for a 404 page.
We apologize for the inconvenience, would you care to look for something else?
Building a RESTful Service that returns JSONP using the Spring Framework
This is not a duplicate of my previous blog entry of Building a RESTful Service that returns JSON using the Spring Framework. In this blog post I’m going to show how you can return JSONP so that you can call your REST APIs directly from your Javascript functions. If you are wondering why you can’t just […]
Building a RESTful Service that returns JSON using the Spring Framework
In my previous post I did a very simple example of Building a very simple Java REST API with Spring 3.x. Now I’d like to build on that and make it a little more useful and show some of the great features available in the Spring Framework that makes things easier and quicker. In this example […]
Building a very simple Java REST API with Spring 3.x
Today’s topic is about building a super simple Java REST APIs with Spring 3.x. RESTful webservices are pretty much what is powering much of the APIs being built today and many of them are being built using Java. The Spring Framework makes building a RESTful Java webservice almost ridiculously easy. This will hopefully be a […]