Result from Angular Controller is: {{ bla }}

Result from REST Web Service is: {{ foo }}

The result from REST Web Service should be: JonFromREST

If the result from REST Web Service is empty: Check that the backend REST Web Service is running and returning the expected result.

  1. in modern browsers just open a new tab and enter http://localhost:8080/ngdemo/web/dummy or
  2. run the script ../test_backend.sh, or
  3. execute curl directly from the command line:curl -i -X GET -H 'Content-Type: application/json' http://localhost:8080/ngdemo/web/dummy or

Maybe you just forgot to start the backend REST Web Service? ../start_backend_java_backend.sh

All of the above results should contain:
{"id":0,"firstName":"JonFromREST","lastName":"DoeFromREST"}