As we’ve learned about Spring Data Repository in our previous tutorials, it’s an abstraction layer that built in top of persistent store that leverage the ability of accessing that store for achieving CRUD operations. Spring Data Repository had integrated seamlessly with all of the aspects that might be concerned by a developer, one of those aspect …
PrimeFaces 5 Features
This tutorial highlights the new features added as part of the PrimeFaces 5 release. PrimeFaces 5 has been announced and shipped with set of new components. We’ve published set of tutorials that covered the PrimeFaces 4 earlier in our blog. To summarize, PrimeFaces 5 comes up with set of new components and lot of minor enhancements …
Bower – Web Package Manager
Bower is a package manager for the web. It offers a generic solution to the problem of front-end package management. Using of Bower will eliminate the need of downloading the JavaScript libraries into your project, so all the developer have to do, is to initiate a Bower into their own project and installing the required libraries by using …
Spring Data JPA : Custom Repository / Query Methods Example
In this tutorial i am going to explain how to use query methods and custom repository implementation in Spring Data JPA framework. I have used Primfaces and JSF to develop the front end to access data using Spring Data infrastructure. When you’re developing a Spring Data Repository, you’ll have three options: Using of a CRUD operations …
Spring Data REST + GemFire Repository + Sencha Touch Integration
Spring Data provides you several ways of consuming the REST repositories through a JavaScript frameworks. We have already provided a set of tutorials that discussed about using Spring Data REST with jQuery, AngularJS, Backbone.js and Rest.js. For this tutorial we’re going to explain you how could Sencha Touch be integrated for accessing the services. Sencha Touch, a high-performance HTML5 …
PrimeFaces + Spring Data using PagingAndSortingRepository Example
In general, Spring Data JPA module implements the Spring Data Commons repository abstraction to ease repository implementations. As well as the Spring Data repository approach allows you to get rid of most of the implementation code by using a plain interface definition. You’ve leveraged repository implementation in your applications by creating an interfaces that extends the …
Spring Data REST + GemFire + Rest.js Integration
In our previous tutorials I have explained about Spring Data REST + GemFire + jQuery Integration and backbone.js integration. REST (Representational State Transfer) is one of the most effective ways Spring Data REST provides for consuming services. Client can be client side frameworks like AngularJS, jQuery, Backbone and Rest libraries. In this tutorial, you’re going to see …
Spring Data REST + GemFire + AngularJS Integration
This tutorial explains the integration between Spring Data REST, GemFire and AngularJS frameworks. We are going to develop a REST service which returns the JSON response and that will be accessed by the AngularJS web page. 1. Tools Required We’ve developed this tutorial by using the following tools: JDK 1.6. Tomcat 7. Maven 3. GemFire …