├── .gitignore ├── CONTRIBUTING.adoc ├── Jenkinsfile ├── LICENSE.txt ├── LICENSE.writing.txt ├── README.adoc ├── ci └── Dockerfile ├── complete ├── app.groovy ├── public │ ├── hello.js │ └── index.html └── run.sh ├── images └── hello.png ├── initial ├── app.groovy ├── public │ └── .gitignore └── run.sh └── test ├── expected.html └── run.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/gs-consuming-rest-angularjs/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/gs-consuming-rest-angularjs/HEAD/CONTRIBUTING.adoc -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/gs-consuming-rest-angularjs/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/gs-consuming-rest-angularjs/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /LICENSE.writing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/gs-consuming-rest-angularjs/HEAD/LICENSE.writing.txt -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/gs-consuming-rest-angularjs/HEAD/README.adoc -------------------------------------------------------------------------------- /ci/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/gs-consuming-rest-angularjs/HEAD/ci/Dockerfile -------------------------------------------------------------------------------- /complete/app.groovy: -------------------------------------------------------------------------------- 1 | @Controller class JsApp { } -------------------------------------------------------------------------------- /complete/public/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/gs-consuming-rest-angularjs/HEAD/complete/public/hello.js -------------------------------------------------------------------------------- /complete/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/gs-consuming-rest-angularjs/HEAD/complete/public/index.html -------------------------------------------------------------------------------- /complete/run.sh: -------------------------------------------------------------------------------- 1 | spring run app.groovy -------------------------------------------------------------------------------- /images/hello.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/gs-consuming-rest-angularjs/HEAD/images/hello.png -------------------------------------------------------------------------------- /initial/app.groovy: -------------------------------------------------------------------------------- 1 | @Controller class JsApp { } -------------------------------------------------------------------------------- /initial/public/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /initial/run.sh: -------------------------------------------------------------------------------- 1 | spring run app.groovy -------------------------------------------------------------------------------- /test/expected.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/gs-consuming-rest-angularjs/HEAD/test/expected.html -------------------------------------------------------------------------------- /test/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/gs-consuming-rest-angularjs/HEAD/test/run.sh --------------------------------------------------------------------------------