Tag Archives: Spring

Testing Jersey Based REST Services with Grizzly


In my last post, we had seen how easy it was to create REST based services with Spring and Jersey. In this post we would quickly see how we can unit test them. Ok, this is not entirely a unit … Continue reading

Posted in Architecture, Java | Tagged , , , , | 1 Comment

Just REST, it’s Easy With Spring and Jersey


In one of the products that we are working on, there is a need to expose the API as REST so that it can be consumed by the developer community and foster innovation. I did a few prototypes for the … Continue reading

Posted in Java | Tagged , , , | 4 Comments

Working With Spring Data JPA


SpringSource have recently released the first milestone of Spring Data JPA project. What are its features? and how can we use them. Spring framework already provides support to build a JPA based data access layer. So, what does Spring Data … Continue reading

Posted in Java | Tagged , | 3 Comments

Configuring Spring Application Using Configuration Annotation


A Spring Module called Java Config has been there for some time now. With the release of Spring 3.0 SpringSource has pulled this module into the core Spring Framework as @Configuration. How can we use this @Configuration in our application? … Continue reading

Posted in Java | Tagged , | 1 Comment