Search code examples
jsonangularjsspring-data-resthal-json

SPRING-DATA-REST Backend with AngularJS frontend


Is there any frontend application sample that consumes RESTful services of Spring-data-rest backend which is written with angularJS.


Solution

  • My prefer for rest api for angularjs is RESTANGULAR module...

    In the site you can see many examples that how they deal with Rest calls and really good documentation and good community as well...

    In this example which is from spring example SPRING.IO they uses $http, but I should say that Restangular uses $http as well, so basically you can say that Restangular is extended version of $http...

    and for the last you can look for $resource...

    I will update my answer If I will find something new...