[...]
 .controller('MainCtrl', function($scope, $http) {
         $http.get('http://localhost:8080/demo/rest/contacts/').then(function(resp) {
                 $scope.items = resp.data;
         }, function(err) {
                 alert('Could not get data!');
         });
 });