Shopping Cart Solution using Spring Boot and Angular 8
Solution is composed of three projects:
- catalog-services: Spring Boot 2.2.4
- shopping-cart-services: Spring Boot 2.2.4
- ShoppingCartWeb: Angular 9
- Clone the repository: git clone https://github.com/ravasconcelos/shoppingCartSolution.git
- Build catalog-services (Tests are only working when executing from Eclipse)
- cd catalog-services
- mvn clean install -DskipTests
- mvn eclipse:eclipse
- Build shopping-carts
- cd ../shopping-cart
- mvn clean install
- mvn eclipse:eclipse
- Build ShoppingCartWeb
- cd ../ShoppingCartWeb
- npm install
- Build catalog-services
- cd ../catalog-services
- mvn spring-boot:run &
- Check http://localhost:8100/catalog-api/products/
- Build shopping-carts
- cd ../shopping-cart
- mvn spring-boot:run &
- Check http://localhost:8200/shoppingcart-api/carts/
- ShoppingCartWeb
- cd ../ShoppingCartWeb
- ng serve &
- Check http://localhost:4200/