org.eclipse.jem.workbench.JavaEMFNature
diff --git a/spring-zuul/spring-zuul-ui/src/main/resources/application.yml b/spring-zuul/spring-zuul-ui/src/main/resources/application.yml
index 14660c497b..855020a40e 100644
--- a/spring-zuul/spring-zuul-ui/src/main/resources/application.yml
+++ b/spring-zuul/spring-zuul-ui/src/main/resources/application.yml
@@ -3,7 +3,3 @@ zuul:
foos:
path: /foos/**
url: http://localhost:8081/spring-zuul-foos-resource/foos
- users:
- path: /users/**
- url: http://localhost:8081/spring-zuul-users-resource/users
-
\ No newline at end of file
diff --git a/spring-zuul/spring-zuul-ui/src/main/resources/templates/index.html b/spring-zuul/spring-zuul-ui/src/main/resources/templates/index.html
index 07d2b77f7f..d279f9eaf9 100755
--- a/spring-zuul/spring-zuul-ui/src/main/resources/templates/index.html
+++ b/spring-zuul/spring-zuul-ui/src/main/resources/templates/index.html
@@ -33,17 +33,6 @@ app.controller('mainCtrl', function($scope,$resource,$http) {
$scope.foo = $scope.foos.get({fooId:$scope.foo.id});
}
- $scope.user = {id:0 , username:"john", age:11};
- $scope.users = $resource("/users/:userId",{userId:'@id'});
-
- $scope.getUser = function(){
- $scope.user = $scope.users.get({userId:$scope.user.id});
- }
-
-
-
-
-
});
/*]]>*/
@@ -63,27 +52,6 @@ app.controller('mainCtrl', function($scope,$resource,$http) {
-
-
- User Details
-
-
- {{user.id}}
-
-
-
-
- {{user.username}}
-
-
-
-
- {{user.age}}
-
-
-