├── .bowerrc ├── .gitignore ├── LICENSE ├── README.md ├── bower.json ├── pom.xml └── src └── main ├── java └── be │ └── g00glen00b │ ├── Application.java │ ├── controller │ └── ItemController.java │ ├── model │ └── Item.java │ └── repository │ └── ItemRepository.java └── resources ├── application.properties └── static ├── app ├── app.js ├── controllers.js └── services.js └── index.html /.bowerrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g00glen00b/ng-spring-boot/HEAD/.bowerrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g00glen00b/ng-spring-boot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g00glen00b/ng-spring-boot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g00glen00b/ng-spring-boot/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g00glen00b/ng-spring-boot/HEAD/bower.json -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g00glen00b/ng-spring-boot/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/be/g00glen00b/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g00glen00b/ng-spring-boot/HEAD/src/main/java/be/g00glen00b/Application.java -------------------------------------------------------------------------------- /src/main/java/be/g00glen00b/controller/ItemController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g00glen00b/ng-spring-boot/HEAD/src/main/java/be/g00glen00b/controller/ItemController.java -------------------------------------------------------------------------------- /src/main/java/be/g00glen00b/model/Item.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g00glen00b/ng-spring-boot/HEAD/src/main/java/be/g00glen00b/model/Item.java -------------------------------------------------------------------------------- /src/main/java/be/g00glen00b/repository/ItemRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g00glen00b/ng-spring-boot/HEAD/src/main/java/be/g00glen00b/repository/ItemRepository.java -------------------------------------------------------------------------------- /src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | spring.jpa.hibernate.ddl-auto=create-drop -------------------------------------------------------------------------------- /src/main/resources/static/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g00glen00b/ng-spring-boot/HEAD/src/main/resources/static/app/app.js -------------------------------------------------------------------------------- /src/main/resources/static/app/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g00glen00b/ng-spring-boot/HEAD/src/main/resources/static/app/controllers.js -------------------------------------------------------------------------------- /src/main/resources/static/app/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g00glen00b/ng-spring-boot/HEAD/src/main/resources/static/app/services.js -------------------------------------------------------------------------------- /src/main/resources/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g00glen00b/ng-spring-boot/HEAD/src/main/resources/static/index.html --------------------------------------------------------------------------------