https://github.com/maciejwalkowiak/todomvc-spring-boot
spring boot + angularjs = todomvc
https://github.com/maciejwalkowiak/todomvc-spring-boot
Last synced: 7 months ago
JSON representation
spring boot + angularjs = todomvc
- Host: GitHub
- URL: https://github.com/maciejwalkowiak/todomvc-spring-boot
- Owner: maciejwalkowiak
- Created: 2014-12-08T10:39:48.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-12-08T23:56:04.000Z (almost 11 years ago)
- Last Synced: 2025-01-07T22:53:34.153Z (9 months ago)
- Language: JavaScript
- Homepage:
- Size: 438 KB
- Stars: 5
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Todomvc in Spring Boot and AngularJS
Demo project demonstrating how to build simple REST API with Spring Boot.
Frontend part is taken from https://github.com/tastejs/todomvc/tree/gh-pages/examples/angularjs
- based on Spring Boot 1.2.RC2
- AngularJS
- todo items are stored in in-memory repository based on simple `HashMap`, can be easily extended to save items to database## Build
`mvn package`
## Run
`java -jar target/java -jar target/todomvc-0.0.1-SNAPSHOT.jar`
or run it through Spring Boot Maven plugin: `mvn spring-boot:run`